Mercurial > hg > ishara
view dsp/wienerfilt.m @ 34:c75bb62b90a9
Imported audio synthesis tools.
author | samer |
---|---|
date | Sun, 20 Jan 2013 19:05:05 +0000 |
parents | c3b0cd708782 |
children | beb8a3f4a345 |
line wrap: on
line source
function Y=wienerfilt(T,S,X,varargin) opts=prefs(varargin{:}); Y=zipwith(@worker,T,S,X); function Y=worker(T,S,X) Y=unbuffer(wiener(X,T,S),opts); end end