photo

Anastasios Papadopoulos


Last seen: 2 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

  • First Answer
  • Revival Level 1

查看徽章

Feeds

排序方式:

已回答
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) ...

5 years 前 | 0