Community Profile

photo

Anastasios Papadopoulos


Last seen: más de 1 año hace Con actividad desde 2020

Estadísticas

  • First Answer
  • Revival Level 1

Ver insignias

Content Feed

Ver por

Respondida
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) ...

alrededor de 4 años hace | 0