From 47535ab08afeb48fbb00f03e68d6ff973cf62cbd Mon Sep 17 00:00:00 2001 From: Abhinav Dronamraju Date: Fri, 10 Nov 2017 14:59:26 +0530 Subject: Functions added --- help/en_US/scilab_en_US_help/latc2tf.html | 115 ------------------------------ 1 file changed, 115 deletions(-) delete mode 100644 help/en_US/scilab_en_US_help/latc2tf.html (limited to 'help/en_US/scilab_en_US_help/latc2tf.html') diff --git a/help/en_US/scilab_en_US_help/latc2tf.html b/help/en_US/scilab_en_US_help/latc2tf.html deleted file mode 100644 index 9e807b5..0000000 --- a/help/en_US/scilab_en_US_help/latc2tf.html +++ /dev/null @@ -1,115 +0,0 @@ -
- -Convert lattice filter parameters to transfer function coefficients
[num,den] = latc2tf(k,v) -Finds the transfer function of the IIR filter from the lattice -coefficients k and ladder coefficients v. -[num,den] = latc2tf(k,'iiroption') -Finds the transfer function of the allpass or allpole (specified by -the iiroption flag) IIR filter. -num = latc2tf(k,'firoption') -Finds the transfer function of the FIR filter from the lattice -coefficients k. The firoption flag specifies the type of the FIR -filter (can be 'min, 'max', or 'FIR')
-Parameters: -k - double - vector -Lattice coefficients -Lattice coefficients for FIR/IIR filter. Can be real or complex. -v - double - vector -Ladder coefficients -Ladder coefficients for IIR filters. Can be real or complex. -iiroption - string flag - 'allpole', or 'allpass' -Specification of the type if IIR filter -firoption - string flag - 'min', 'max', or 'FIR' (default) -Speficication of the type of FIR filter
-1) FIR filter -k1 = [1/2 1/2 1/4]; -[num1,den1] = latc2tf(k1); | ![]() | ![]() |