- Scilabヘルプ
- CACSD
- Formal 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
- fspec
- 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
- plzr
- pol2des
- ppol
- prbs_a
- projsl
- repfreq
- ric_desc
- ricc
- riccati
- routh_t
- rowinout
- rowregul
- rtitr
- sensi
- sident
- sorder
- specfact
- ssprint
- st_ility
- stabil
- sysfact
- syslin
- 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
armax1
armax 同定
呼び出し手順
[arc,resid]=armax1(r,s,q,y,u [,b0f])
パラメータ
- y
出力信号
- u
入力信号
- r,s,q
自己回帰の次数, ただし, r >=0, s >=-1.
- b0f
オプションのパラメータ. デフォルト値は 0で,この場合, 係数 b0 を同定する必要があります. bof=1の場合, b0 は0であると仮定され,同定されません.
- arc
"ar"型のtlistおよびフィールド a, b, d, ny, nu, sig
- a
ベクトル
[1,a1,...,a_r]
- b
ベクトル
[b0,......,b_s]
- d
ベクトル
[1,d1,....,d_q]
- sig
resid=[ sig*echap(1),....,];
説明
armax1 は1次元のARXプロセスの係数を同定するために使用されます:
A(z^-1)y= B(z^-1)u + D(z^-1)sig*e(t) e(t) is a 1-dimensional white noise with variance 1. A(z)= 1+a1*z+...+a_r*z^r; ( r=0 => A(z)=1) B(z)= b0+b1*z+...+b_s z^s ( s=-1 => B(z)=0) D(z)= 1+d1*z+...+d_q*z^q ( q=0 => D(z)=1)
この手法については,Eykhoffの96ページ, "trends and progress in system identification"を参照ください.
z(t)=[y(t-1),..,y(t-r),u(t),..., u(t-s),e(t-1),...,e(t-q)]
および
coef= [-a1,..,-ar,b0,...,b_s,d1,...,d_q]' y(t)= coef'* z(t) + sig*e(t).
とすると, 逐次型のAR推定(RLLS)が使用されます. この際, e(t-i)は推定値により置換されます. q=0の場合,この手法は逐次型のarmaxに完全に一致します.
重要な警告
バージョン4.1.2までのScilabは,
sig
の2乗を戻り値
arc.sig
として返していました.
armaモデルの表示とarmax関数について
確認し易くするために, Scilabバージョン5.0以降では,
戻り値arc.sig
はsig
となっています.
Report an issue | ||
<< armax | CACSD | arsimul >> |