Community Profile

photo

Anastasios Papadopoulos


Last seen: oltre un anno fa Attivo dal 2020

Followers: 0   Following: 0

Statistiche

  • First Answer
  • Revival Level 1

Visualizza badge

Feeds

Visto da

Risposto
I cannot pass one of the final MATLAB problems on the coursera MATLAB course. What is wrong with my code? Why won't it work for the 'Image Blur' assignment?
function output = blur(img,w) [m,n] = size(img); img_1 = zeros(m + 2*w, n + 2*w); for i=(1+w):(m+w) for j=(1+w):(n+w) ...

oltre 4 anni fa | 0