photo

Shiladittya Debnath


Last seen: presque 4 ans il y a Actif depuis 2020

Followers: 0   Following: 0

Statistiques

  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
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);

presque 4 ans il y a | 0

Réponse apportée
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=...

presque 4 ans il y a | 0

Réponse apportée
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.^...

presque 4 ans il y a | 0

Réponse apportée
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,:)); ...

presque 4 ans il y a | 0