photo

David Gonzalez


Last seen: 10 Tage vor Aktiv seit 2020

Followers: 0   Following: 0

Statistik

  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

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

etwa 4 Jahre vor | 3

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

etwa 4 Jahre vor | 0

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

etwa 4 Jahre vor | 0