From 9ca7882cee16ad48b18df989e8300c697010e55a Mon Sep 17 00:00:00 2001
From: Sunil Shetye
Date: Wed, 25 Jul 2018 16:27:51 +0530
Subject: code changes by Sonu Sharma during FOSSEE Fellowship 2018
---
help/en_US/besself.xml | 38 +++++++++++++++++++-------------------
1 file changed, 19 insertions(+), 19 deletions(-)
(limited to 'help/en_US/besself.xml')
diff --git a/help/en_US/besself.xml b/help/en_US/besself.xml
index b792eaf..f7456d9 100644
--- a/help/en_US/besself.xml
+++ b/help/en_US/besself.xml
@@ -17,18 +17,19 @@
besself
- This function generates a Bessel filter.
+ Bessel filter design.
Calling Sequence
- [a, b] = besself(n, w)
- [a, b] = besself (n, w, "high")
- [a, b, c] = besself (…)
- [a, b, c, d] = besself (…)
- […] = besself (…, "z")
+[b, a] = besself(n, Wc)
+[b, a] = besself (n, Wc, "high")
+[b, a] = besself (n, [Wl, Wh])
+[b, a] = besself (n, [Wl, Wh], "stop")
+[z, p, g] = besself (…)
+[…] = besself (…, "z")
@@ -36,31 +37,30 @@
Parameters
n:
- positive integer value
- w:
- positive real value
+ positive integer value (order of filter)
+ W:
+ positive real value 1).Analog 3dB cutoff frequency/frequencies for analog filter, in the range [0, Inf] {rad/sec} 2).Normalised digital 3dB cutoff frequency/frequencies for digital filter, in the range [0, 1] {dimensionless}
Description
-This is an Octave function.
-This function generates a Bessel filter. The default is a Laplace space (s) filter.
-The third parameter takes in high or low, the default value being low. The cutoff is pi*Wc radians.
-[z,p,g] = besself(...) returns filter as zero-pole-gain rather than coefficients of the numerator and denominator polynomials.
-[...] = besself(...,’z’) returns a discrete space (Z) filter. w must be less than 1.
-[a,b,c,d] = besself(...) returns state-space matrices.
+This function generates a Bessel filter. The default is a Laplace space (s) or analog filter.
+If second argument is scalar the third parameter takes in high or low, the default value being low. The cutoff is Wc rad/sec.
+If second argument is vector of length 2 ie [Wl Wh] then third parameter may be pass or stop default is pass for bandpass and band reject filter respectively
+[z,p,g] = besself(...) returns filter as zero-pole-gain rather than coefficients of the numerator and denominator polynomials.
+[...] = besself(...,’z’) returns a discrete space (Z) filter. Wc must be less than 1 {dimensionless}.
Examples
--
cgit