Community Profile

photo

绵辉 翁


Last seen: 2 years ago Active since 2021

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
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 years ago | 0

Answered
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 years ago | 0