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

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ヘルプ >> CACSD > Linear Analysis > Frequency Domain > freson

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:
Mon Jan 03 14:37:49 CET 2022