Revision as of 16:38, 1 July 2009 by Mzulkifl (Talk | contribs)



function y = convo(x,h) % creating a MATLAB function convo that calls upon two vectors x and h to be convoluted.

X = fft([x zeros(1,length(h)-1)]); H = fft([h zeros(1,length(x)-1)]); y = ifft(X.*H);

Alumni Liaison

EISL lab graduate

Mu Qiao