Anastasios Papadopoulos
Followers: 0 Following: 0
統計
MATLAB Answers
0 質問
1 回答
ランク
of 153,912
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
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) ...
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年弱 前 | 0