photo

Shiladittya Debnath


Last seen: 4年以上 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

0 質問
4 回答

ランク
71,078
of 297,648

評判
0

コントリビューション
0 質問
4 回答

回答採用率
0.00%

獲得投票数
0

ランク
 of 20,460

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 159,301

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • First Answer

バッジを表示

Feeds

表示方法

回答済み
Write a function called blur that blurs the input image
Code to CALL YOUR FUNCTION : img = imread('vandy.png'); output = blur(img,2); imshow(output);

4年以上 前 | 0

回答済み
Write a function called blur that blurs the input image
Function : function output = blur(img,w) B=double(img); [m,n] = size(B); k=2*w+1; for i = 1:m for j = 1:n p=...

4年以上 前 | 0

回答済み
how to find the element which is greater than or equal to its row and smaller or equal to its column in a matrix
And for Code to Call your Function : % create an interesting surface [X,Y] = meshgrid(-15:0.5:10,-10:0.5:10); Z = (X.^2-Y.^...

4年以上 前 | 0

回答済み
how to find the element which is greater than or equal to its row and smaller or equal to its column in a matrix
For Function : function id = saddle(M) [a,b]=size(M); id = zeros(a+b,2); count = 0; for i = 1:a mah = max(M(i,:)); ...

4年以上 前 | 0