Community Profile

photo

David Gonzalez


Last seen: 9 días hace Con actividad desde 2020

Followers: 0   Following: 0

Estadísticas

  • First Answer

Ver insignias

Feeds

Ver por

Respondida
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)]...

casi 4 años hace | 3

Respondida
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...

casi 4 años hace | 0

Respondida
[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...

casi 4 años hace | 0