Home
last modified time | relevance | path

Searched refs:cheby2 (Results 1 – 25 of 30) sorted by relevance

12

/dports/math/octave-forge-signal/signal-1.4.1/inst/
H A Dcheby2.m28 ## [b, a] = cheby2(n, Rs, Wc)
34 ## [b, a] = cheby2(n, Rs, [Wl, Wh])
40 ## [z, p, g] = cheby2(...)
44 ## [...] = cheby2(...,'s')
47 ## [a,b,c,d] = cheby2(...)
155 %!error [a, b] = cheby2 ()
156 %!error [a, b] = cheby2 (1)
157 %!error [a, b] = cheby2 (1, 2)
164 %! cheby2 (3, 4, .5);
167 %! A = cheby2 (3, 4, .5);
[all …]
H A Dcheb2ord.m32 ## be given as inputs to @code{cheby2}.
219 %! [b, a] = cheby2 (n, Rstop, Wn_p);
247 %! [b, a] = cheby2 (n, Rstop, Wn_s);
329 %! [b, a] = cheby2 (n, Rstop, Wn_p);
359 %! [b, a] = cheby2 (n, Rstop, Wn_s);
389 %! [b, a] = cheby2 (n, Rstop, Wn_p);
419 %! [b, a] = cheby2 (n, Rstop, Wn_s);
576 %! [b, a] = cheby2 (n, Rstop, Wn_p, "s");
602 %! [b, a] = cheby2 (n, Rstop, Wn_s, "s");
680 %! [b, a] = cheby2 (n, Rstop, Wn_p, "s");
[all …]
H A Dcheb2ap.m22 ## to @code{cheby2 (@var{n}, @var{Rs}, 1, "s")}.
24 ## @seealso{cheby2}
36 [z, p, g] = cheby2 (n, Rs, 1, "s");
/dports/cad/py-pyfda/pyfda-0.1rc6/pyfda/filter_design/
H A Dcheby2.py94 self.info_doc.append(sig.cheby2.__doc__)
179 self._save(fil_dict, sig.cheby2(self.N, self.A_SB, self.F_SBC,
183 self._save(fil_dict, sig.cheby2(self.N, self.A_SB, self.F_C,
191 self._save(fil_dict, sig.cheby2(self.N, self.A_SB, self.F_SBC,
196 self._save(fil_dict, sig.cheby2(self.N, self.A_SB, self.F_C,
207 self._save(fil_dict, sig.cheby2(self.N, self.A_SB, self.F_SBC,
212 self._save(fil_dict, sig.cheby2(self.N, self.A_SB, [self.F_C, self.F_C2],
221 self._save(fil_dict, sig.cheby2(self.N, self.A_SB, self.F_SBC,
226 self._save(fil_dict, sig.cheby2(self.N, self.A_SB, [self.F_C, self.F_C2],
/dports/science/py-obspy/obspy-1.2.2/obspy/signal/
H A Dfilter.py28 from scipy.signal import (cheb2ord, cheby2, convolve, get_window, iirfilter,
395 return cheby2(order, rs, wn, btype='low', analog=0, output='ba')
396 z, p, k = cheby2(order, rs, wn, btype='low', analog=0, output='zpk')
/dports/science/py-scipy/scipy-1.7.1/scipy/signal/tests/
H A Dtest_filter_design.py861 sos = cheby2(N, 60, Wn, 'stop', output='sos')
1598 b, a = cheby2(N, rs, Wn, 'lp', False)
1613 b, a = cheby2(N, rs, Wn, 'hp', False)
1628 b, a = cheby2(N, rs, Wn, 'bp', False)
1646 b, a = cheby2(N, rs, Wn, 'bs', False)
1664 b, a = cheby2(N, rs, Wn, 'bp', True)
1682 b, a = cheby2(N, rs, Wn, 'hp', False, fs=fs)
2837 b, a = cheby2(0, 123.456, 1, analog=True)
2846 z, p, k = cheby2(1, 50, 0.3, output='zpk')
2863 B, A = cheby2(18, 100, 0.5)
[all …]
/dports/math/octave-forge-signal/signal-1.4.1/
H A DINDEX78 cheby2
H A DNEWS44 cheby2 gausswin specgram
/dports/audio/codec2/codec2-1.0.3/octave/
H A Dfmfsk.m281 %[b a] = cheby2(6,40,[3000 6000]/(Fs/2));
H A Dgmsk.m880 [b a] = cheby2(6,40,[200 3000]/(Fs/2));
932 [b a] = cheby2(6,40,[12000-8000 12000+8000]/(Fs/2));
/dports/lang/yorick/yorick-y_2_2_04/i/
H A Dfilter.i608 func cheby2(np,atten,w,wc,db) in cheby2() function
/dports/comms/cubicsdr/CubicSDR-0248e5a/external/liquid-dsp/
H A Dmakefile.mingw32423 src/filter/src/cheby2.o \
470 src/filter/src/cheby2.o : %.o : %.c $(include_headers)
H A Dmakefile.mingw64423 src/filter/src/cheby2.o \
470 src/filter/src/cheby2.o : %.o : %.c $(include_headers)
/dports/comms/liquid-dsp/liquid-dsp-1.3.2/
H A Dmakefile.in415 src/filter/src/cheby2.o \
461 src/filter/src/cheby2.o : %.o : %.c $(include_headers)
/dports/math/octave/octave-6.4.0/scripts/help/
H A D__unimplemented__.m339 "cheb2ord", "chebwin", "cheby1", "cheby2", "chirp", "convmtx", ...
/dports/math/octave-forge-special-matrix/special-matrix-1.0.7/
H A DChangeLog551 trunk/octave-forge/main/signal/cheby2.m,
996 trunk/octave-forge/main/signal/cheby2.m,
/dports/science/py-scipy/scipy-1.7.1/scipy/signal/
H A Dfilter_design.py3077 def cheby2(N, rs, Wn, btype='low', analog=False, output='ba', fs=None): function
/dports/print/lgrind/lgrind/
H A Dlgrindef334 cheby2 choices choicex chol cinvert cla clabel clc \
/dports/science/py-scipy/scipy-1.7.1/doc/release/
H A D0.16.0-notes.rst84 `cheby1`, `cheby2`, `ellip`, and `bessel` can return the filter in the SOS
/dports/math/octave-forge-ident/ident-1.0.7/
H A DChangeLog1073 trunk/octave-forge/main/signal/inst/cheby2.m,
2130 trunk/octave-forge/main/signal/inst/cheby2.m,
2932 trunk/octave-forge/main/signal/cheby2.m,
/dports/math/octave-forge-zenity/zenity-0.5.7/
H A DChangeLog1079 trunk/octave-forge/main/signal/inst/cheby2.m,
2159 trunk/octave-forge/main/signal/inst/cheby2.m,
/dports/math/octave-forge-civil-engineering/civil-engineering-1.0.7/
H A DChangeLog1038 trunk/octave-forge/main/signal/inst/cheby2.m,
2186 trunk/octave-forge/main/signal/inst/cheby2.m,
3513 trunk/octave-forge/main/signal/cheby2.m,
/dports/math/octave-forge-informationtheory/informationtheory-0.1.8/
H A DChangeLog1122 trunk/octave-forge/main/signal/inst/cheby2.m,
2190 trunk/octave-forge/main/signal/inst/cheby2.m,
/dports/math/octave-forge-integration/integration-1.0.7/
H A DChangeLog1073 trunk/octave-forge/main/signal/inst/cheby2.m,
2459 trunk/octave-forge/main/signal/cheby2.m,
/dports/math/octave-forge-irsa/irsa-1.0.7/
H A DChangeLog1067 trunk/octave-forge/main/signal/inst/cheby2.m,
2121 trunk/octave-forge/main/signal/inst/cheby2.m,

12