From c0c0582462720ed597b00e116506570577614e89 Mon Sep 17 00:00:00 2001 From: shamikam Date: Tue, 7 Nov 2017 15:59:48 +0530 Subject: initial commit --- help/en_US/scilab_en_US_help/ellipord.html | 89 ++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 help/en_US/scilab_en_US_help/ellipord.html (limited to 'help/en_US/scilab_en_US_help/ellipord.html') diff --git a/help/en_US/scilab_en_US_help/ellipord.html b/help/en_US/scilab_en_US_help/ellipord.html new file mode 100644 index 0000000..855ca22 --- /dev/null +++ b/help/en_US/scilab_en_US_help/ellipord.html @@ -0,0 +1,89 @@ +
+ +This function computes the minimum filter order of an elliptic filter with the desired response characteristics.
[n] = ellipord(Wp, Ws, Rp, Rs) +[n, Wp] = ellipord(Wp, Ws, Rp, Rs)
scalar or vector of length 2, all elements must be in the range [0,1]
scalar or vector of length 2, all elements must be in the range [0,1]
real or complex value
real or complex value
This is an Octave function. +This function computes the minimum filter order of an elliptic filter with the desired response characteristics. +Stopband frequency ws and passband frequency wp specify the the filter frequency band edges. +Frequencies are normalized to the Nyquist frequency in the range [0,1]. +Rp is measured in decibels and is the allowable passband ripple and Rs is also measured in decibels and is the minimum attenuation in the stop band. +If ws>wp then the filter is a low pass filter. If wp>ws, then the filter is a high pass filter. +If wp and ws are vectors of length 2, then the passband interval is defined by wp and the stopband interval is defined by ws. +If wp is contained within the lower and upper limits of ws, the filter is a band-pass filter. If ws is contained within the lower and upper limits of wp, the filter is a band-stop or band-reject filter.