photo

Yaksha SJ


Last seen: oltre 5 anni fa Attivo dal 2020

Followers: 0   Following: 0

Statistica

MATLAB Answers

0 Domande
2 Risposte

RANK
7.263
of 300.392

REPUTAZIONE
6

CONTRIBUTI
0 Domande
2 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
3

RANK
 of 20.934

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK

of 168.373

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
How can blur an image
function out = blur(img,w) % convert to double for doing calculations imgD = double(img); [row, col] = size(img);...

oltre 5 anni fa | 2

Risposto
[Assignment]Write a function called saddle that finds saddle points in the input matrix M.
function s = saddle(M) [r, c] = size(M); % Initialize the saddle points to an empty array s = []; % Check the dimensions to ...

oltre 5 anni fa | 1