photo

David Gonzalez


Last seen: 13日 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

  • First Answer

バッジを表示

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

約4年 前 | 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...

約4年 前 | 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...

約4年 前 | 0