Shiladittya Debnath
Followers: 0 Following: 0
Estadística
0 Preguntas
4 Respuestas
CLASIFICACIÓN
61.806
of 295.448
REPUTACIÓN
0
CONTRIBUCIONES
0 Preguntas
4 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.227
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 153.872
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
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);
más de 4 años hace | 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=...
más de 4 años hace | 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.^...
más de 4 años hace | 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,:)); ...
más de 4 años hace | 0