Scilab 5.3.0
- Scilab Online Help
- Signal Processing
- How to
- Signal
- analpf
- bilt
- buttmag
- casc
- cepstrum
- cheb1mag
- cheb2mag
- chepol
- convol
- corr
- cspect
- czt
- detrend
- dft
- ell1mag
- eqfir
- eqiir
- faurre
- ffilt
- fft
- fft2
- fftshift
- filt_sinc
- filter
- find_freq
- findm
- frfit
- frmag
- fsfirlin
- group
- hank
- hilb
- hilbert
- iir
- iirgroup
- iirlp
- intdec
- jmat
- kalm
- lattn
- lattp
- lev
- levin
- lindquist
- mese
- mfft
- mrfit
- %asn
- %k
- %sn
- phc
- pspect
- remez
- remezb
- rpem
- sincd
- srfaur
- srkf
- sskf
- syredi
- system
- trans
- wfir
- wiener
- wigner
- window
- yulewalk
- zpbutt
- zpch1
- zpch2
- zpell
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
cheb2mag
2形チェビシェフフィルタの応答
呼び出し手順
[h2]=cheb2mag(n,omegar,A,sample)
パラメータ
- n
整数 ;フィルタの次数
- omegar
実数スカラー : カットオフ周波数
- A
阻止域における減衰
- sample
cheb2mag を評価する周波数のベクトル
- h2
サンプル点におけるチェビシェフ II 形フィルタの値のベクトル
説明
2形チェビシェフフィルタの二乗振幅応答.
omegar
= 阻止域のエッジ, sample
=
二乗振幅h2
を取得する周波数のベクトル.
例
//チェビシェフ; 阻止域のリップル n=10;omegar=6;A=1/0.2;sample=0.0001:0.05:10; h2=cheb2mag(n,omegar,A,sample); plot(sample,log(h2)/log(10),'frequencies','magnitude in dB') //周波数のエッジをプロット minval=(-max(-log(h2)))/log(10); plot2d([omegar;omegar],[minval;0],[2],"000"); //阻止域のエッジにおける減衰(単位:dB)を計算 attenuation=-log(A*A)/log(10); plot2d(sample',attenuation*ones(sample)',[5],"000")
参照
<< cheb1mag | Signal Processing | chepol >> |