photo

绵辉 翁


Last seen: 3 years 前 自 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...

3 years 前 | 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...

3 years 前 | 0