<< ladrfilt Signal Processing Supplementary toolbox prony >>

Signal Processing Supplementary toolbox >> Signal Processing Supplementary toolbox > latcfilt

latcfilt

Add short description here.

Calling Sequence

y = latcfilt(K,x)

Parameters

K

Add here the parameter description.

x

Add here the parameter description.

y

Add here the parameter description.

Description

Add here a paragraph of the function description. Other paragraph can be added

Examples

//A discrete Signal 
X=[ 3, 7, 1 , 8, 12, 5, -3,  -1, 4, 7, 3, 1];
//Fir filter coefficients
B=[1, 2, 8, 5, 2];
B=B/sum(B);
// Lattice filter coefficients
K=dir2latc(B);
// Filtering X with K
Y=latcfilt(K,X)

See Also

Authors


Report an issue
<< ladrfilt Signal Processing Supplementary toolbox prony >>