Revision as of 16:35, 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 that calls upon two vectors x and h.

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

Alumni Liaison

Prof. Math. Ohio State and Associate Dean
Outstanding Alumnus Purdue Math 2008

Jeff McNeal