Scilab 5.4.0
- Scilab help
- CACSD
- Format representations and conversions
- Plot and display
- abinv
- arhnk
- arl2
- arma
- arma2p
- arma2ss
- armac
- armax
- armax1
- arsimul
- augment
- balreal
- bilin
- bstap
- cainv
- calfrq
- canon
- ccontrg
- cls2dls
- colinout
- colregul
- cont_mat
- contr
- contrss
- copfac
- csim
- ctr_gram
- damp
- dcf
- ddp
- dhinf
- dhnorm
- dscr
- dsimul
- dt_ility
- dtsi
- equil
- equil1
- feedback
- findABCD
- findAC
- findBD
- findBDK
- findR
- findx0BD
- flts
- fourplan
- freq
- freson
- fspecg
- fstabst
- g_margin
- gamitg
- gcare
- gfare
- gfrancis
- gtild
- h2norm
- h_cl
- h_inf
- h_inf_st
- h_norm
- hankelsv
- hinf
- imrep2ss
- inistate
- invsyslin
- kpure
- krac2
- lcf
- leqr
- lft
- lin
- linf
- linfn
- linmeq
- lqe
- lqg
- lqg2stan
- lqg_ltr
- lqr
- ltitr
- macglov
- minreal
- minss
- mucomp
- narsimul
- nehari
- noisegen
- nyquistfrequencybounds
- obs_gram
- obscont
- observer
- obsv_mat
- obsvss
- p_margin
- parrot
- pfss
- phasemag
- pol2des
- ppol
- prbs_a
- projsl
- reglin
- repfreq
- ric_desc
- ricc
- riccati
- routh_t
- rowinout
- rowregul
- rtitr
- sensi
- sident
- sorder
- specfact
- ssprint
- st_ility
- stabil
- sysfact
- syssize
- time_id
- trzeros
- ui_observer
- unobs
- zeropen
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
sensi
感度関数
呼び出し手順
[Se,Re,Te]=sensi(G,K) [Si,Ri,Ti]=sensi(G,K,flag)
パラメータ
- G
標準プラント (
syslin
リスト)- K
補償器 (
syslin
リスト)- flag
文字列
'o'
(デフォルト値) または'i'
- Se
出力感度関数
(I+G*K)^-1
- Re
K*Se
- Te
G*K*Se
(出力相補感度関数)
説明
sensi
は感度関数を計算します.
G
および K
が
状態空間形式で指定される場合,
システムは一般的に最小実現を返します.
計算は lft
により行われます.
例えば, Se
は
コマンド
P = augment(G,'S')
, Se=lft(P,K)
により指定することができます.
flag
= 'i'
の場合,
[Si,Ri,Ti]=sensi(G,K,'i')
は
入力感度関数を返します.
例
G=ssrand(1,1,3);K=ssrand(1,1,3); [Se,Re,Te]=sensi(G,K); Se1=inv(eye()+G*K); //Other way to compute ss2tf(Se) //Se seen in transfer form ss2tf(Se1) ss2tf(Te) ss2tf(G*K*Se1) [Si,Ri,Ti]=sensi(G,K,'i'); w1=[ss2tf(Si);ss2tf(Ri);ss2tf(Ti)] w2=[ss2tf(inv(eye()+K*G));ss2tf(G*inv(eye()+K*G));ss2tf(K*G*inv(eye()+K*G))]; clean(w1-w2)
Report an issue | ||
<< rtitr | CACSD | sident >> |