![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/5584394_1536596583486_DEF.jpg)
David Gonzalez
Followers: 0 Following: 0
Statistiques
0 Questions
3 Réponses
RANG
7 524
of 297 016
RÉPUTATION
6
CONTRIBUTIONS
0 Questions
3 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
3
RANG
of 20 419
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 157 725
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Generate echo to an audio
function echo_sound = echo_gen(input, fs, delay, amp) new_sr = round(fs*delay); no_echo = [input; zeros(new_sr,1)]...
plus de 4 ans il y a | 3
How can blur an image
function output = blur(img,w) mirror = -1*ones(size(img) + 2*w); mirror(w+1:end-w,w+1:end-w) = img; output = zero...
plus de 4 ans il y a | 0
[Assignment]Write a function called saddle that finds saddle points in the input matrix M.
function indices = saddle(M) indices = []; for jj = 1:size(M,2) for ii = 1:size(M,1) if M(i...
plus de 4 ans il y a | 0