Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.0 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> Signal Processing > Spectral estimation > cepstrum

cepstrum

ケプストラム計算

呼び出し手順

fresp = cepstrum(w,mag)

引数

w

周波数の実数ベクトル(正) (rad/sec)

mag

振幅の実数ベクトル (wと同じ大きさ)

fresp

複素ベクトル

説明

fresp = cepstrum(w,mag) は, 周波数w(i)における振幅がmag(i)で, freqの位相が安定な最小位相システムとなる 周波数応答fresp(i)を返します. w はソートされている必要はありませんが, エントリの最小値がゼロに近くなることはできず, wのエントリは全て異なる必要があります.

w=0.1:0.1:5;mag=1+abs(sin(w));
fresp=cepstrum(w,mag);
plot2d([w',w'],[mag(:),abs(fresp)])

参照

  • frfit — 周波数応答フィッティング
Report an issue
<< Spectral estimation Spectral estimation cspect >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Feb 14 15:10:30 CET 2017