[Master Index]
[Index for /tools/hpmatlab/toolbox/matlab/datafun]
filter
(/tools/hpmatlab/toolbox/matlab/datafun/filter.m)
Function Synopsis
y = filter(b,a,x)
Help text
FILTER Digital filter.
Y = FILTER(B, A, X) filters the data in vector X with the
filter described by vectors A and B to create the filtered
data Y. The filter is a "Direct Form II Transposed"
implementation of the standard difference equation:
y(n) = b(1)*x(n) + b(2)*x(n-1) + ... + b(nb+1)*x(n-nb)
- a(2)*y(n-1) - ... - a(na+1)*y(n-na)
[Y,Zf] = FILTER(B,A,X,Zi) gives access to initial and final
conditions, Zi and Zf, of the delays.
See also FILTFILT in the Signal Processing Toolbox.
Cross-Reference Information
This function is called by
- besselap /tools/hpmatlab/toolbox/signal/besselap.m
- conv /tools/hpmatlab/toolbox/matlab/datafun/conv.m
- cztdemo /tools/hpmatlab/toolbox/signal/cztdemo.m
- decimate /tools/hpmatlab/toolbox/signal/decimate.m
- deconv /tools/hpmatlab/toolbox/matlab/datafun/deconv.m
- filtdemo /tools/hpmatlab/toolbox/signal/filtdemo.m
- filtfilt /tools/hpmatlab/toolbox/signal/filtfilt.m
- filtic /tools/hpmatlab/toolbox/signal/filtic.m
- fir1 /tools/hpmatlab/toolbox/signal/fir1.m
- fir2 /tools/hpmatlab/toolbox/signal/fir2.m
- firfilt ee2200/firfilt.m
- impz /tools/hpmatlab/toolbox/signal/impz.m
- interp /tools/hpmatlab/toolbox/signal/interp.m
- intfilt /tools/hpmatlab/toolbox/signal/intfilt.m
- numf /tools/hpmatlab/toolbox/signal/numf.m
- pez ee2200/pez.m
- residuez /tools/hpmatlab/toolbox/signal/residuez.m
- sosdemo /tools/hpmatlab/toolbox/signal/sosdemo.m
- stmcb /tools/hpmatlab/toolbox/signal/stmcb.m
- xcorr2 /tools/hpmatlab/toolbox/signal/xcorr2.m
Produced by mat2html on Wed Feb 8 12:25:18 EST 1995
Cross-Directory links are: ON