Feeds
已回答
Use MATLAB built-in function conv() to compute and plot y[n]
x = ... h = ... y = conv(x,h); subplot(3,1,1); stem(0:length(x)-1,x); subplot(3,1,2); stem(0:length(h)-1,h) subplot(3,1,3...
Use MATLAB built-in function conv() to compute and plot y[n]
x = ... h = ... y = conv(x,h); subplot(3,1,1); stem(0:length(x)-1,x); subplot(3,1,2); stem(0:length(h)-1,h) subplot(3,1,3...
4 years 前 | 0
