annotate dsp/specfilt.m @ 36:9e7be347b3a0

Renamed sequence classes to avoid clashes with seq methods; Fixed default slicing dimension while retaining behaviour of window.m; Updated use of sequences in dsp/synth.
author samer
date Thu, 24 Jan 2013 14:51:23 +0000
parents c3b0cd708782
children
rev   line source
samer@32 1 % specfilt
samer@32 2 function Y=specfilt(X,S,varargin)
samer@32 3 args=varargin;
samer@32 4 Y=zipwith(@specfiltf,S,X);
samer@32 5
samer@32 6 function Y=specfiltf(x,s),
samer@32 7 Y=unbuffer(ipowspec(s,phasespec(x)),args{:}); end
samer@32 8 end
samer@32 9 end