Community Profile

photo

绵辉 翁


Last seen: 2年以上 前 2021 年からアクティブ

Followers: 0   Following: 0

統計

  • First Answer

バッジを表示

Feeds

表示方法

回答済み
Generate echo to an audio
function output = echo_gen(input,fs,delay,amp) rawecho = zeros(length(input)+round(fs*delay),1);%creat a vector to storge "pure...

2年以上 前 | 0

回答済み
Write a function called blur that blurs the input image
function output = blur(img,w) copyimg = double(img); for ii = 1:size(img,1) for jj = 1:size(img,2) array = zeros...

2年以上 前 | 0