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

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

Correspondence Chess Grandmaster and Purdue Alumni

Prof. Dan Fleetwood