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


freson

ピーク周波数

呼び出し手順

fr=freson(h)

パラメータ

h

syslin リスト

fr

ピーク周波数のベクトル (単位: Hz)

説明

SISOプラント h に関して, ピーク周波数のベクトル(単位: Hz)を返します.

Continuous time system

h = syslin('c',-1+%s,(3+2*%s+%s^2)*(50+0.1*%s+%s^2));
fr = freson(h)
clf
bode(h);
fig=gcf();sca(fig.children(2));
[phi,db] = phasemag(repfreq(h,fr));
plot(fr,db(:),'+r')

Discrete time system

h = syslin('c',-1+%s,(3+2*%s+%s^2)*(50+0.1*%s+%s^2));
hd = dscr(h, 0.05);
fr = freson(hd)
clf
bode(hd);
fig=gcf();sca(fig.children(2));
[phi,db] = phasemag(repfreq(hd,fr));
plot(fr,db(:),'+r');

参照

  • frep2tf — 周波数応答から伝達関数実現を得る
  • zgrid — zgrid プロット
  • h_norm — H無限大ノルム

履歴

バージョン記述
6.0

handling discrete systems and zpk representation, peak detection improved.

Report an issue
<< freq Frequency Domain gainplot >>

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 Mar 07 09:28:45 CET 2023