Feeds
답변 있음
How can I Implement a convolution function in MATLAB and perform it on the following signals and plot the results ?
n = -20:20; x = sin(n); h = [-1,-2,8,-2,-1]; N = length(x); M = length(h); Ny = N + M -1; y = zeros(1,Ny); ...
How can I Implement a convolution function in MATLAB and perform it on the following signals and plot the results ?
n = -20:20; x = sin(n); h = [-1,-2,8,-2,-1]; N = length(x); M = length(h); Ny = N + M -1; y = zeros(1,Ny); ...
4년 초과 전 | 0
