photo

David Gonzalez


Last seen: 11 jours il y a Actif depuis 2020

Followers: 0   Following: 0

Statistiques

  • First Answer

Afficher les badges

Feeds

Afficher par

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

environ 4 ans il y a | 3

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

environ 4 ans il y a | 0

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

environ 4 ans il y a | 0