photo

Shiladittya Debnath


Last seen: 5 years ago Active since 2020

Followers: 0   Following: 0

Statistics

MATLAB Answers

0 Questions
4 Answers

RANK
121,758
of 300,632

REPUTATION
0

CONTRIBUTIONS
0 Questions
4 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
 of 21,033

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 169,890

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • First Answer

View badges

Feeds

View by

Answered
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);

5 years ago | 0

Answered
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=...

5 years ago | 0

Answered
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.^...

5 years ago | 0

Answered
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,:)); ...

5 years ago | 0