- Справка Scilab
- CACSD
- formal_representation
- Plot and display
- plzr
- syslin
- 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
- pol2des
- ppol
- prbs_a
- projsl
- 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.
However, this page did not exist in the previous stable version.
ric_desc
Riccati equation
Calling Sequence
X=ric_desc(H [,E)) [X1,X2,zero]=ric_desc(H [,E])
Arguments
- H,E
real square matrices
- X1,X2
real square matrices
- zero
real number
Description
Riccati solver with hamiltonian matrices as inputs.
In the continuous time case calling sequence is ric_descr(H)
(one input):
Riccati equation is:
(Ec) A'*X + X*A + X*R*X -Q = 0.
Defining the hamiltonian matrix H
by:
H = [A R; Q -A']
with the calling sequence [X1,X2,zero]=ric_descr(H)
, the
solution X
is given by X=X1/X2
.
zero
= L1 norm of rhs of (Ec
)
The solution X
is also given by X=riccati(A,Q,R,'c'))
In the discrete-time case calling sequence is ric_descr(H,E)
(two inputs):
The Riccati equation is:
(Ed) A'*X*A-(A'*X*B*(R+B'*X*B)^-1)*(B'*X*A)+C-X = 0.
Defining G=B/R*B'
and the hamiltonian pencil (E,H)
by:
with the calling sequence [X1,X2,err]=ric_descr(H,E)
, the
solution X
is given by X=X1/X2
.
zero
= L1 norm of rhs of (Ed
)
The solution X
is also given by X=riccati(A,G,C,'d')
with G=B/R*B'
Examples
h=[0.5,4; 0,-0.5] x=ric_desc(h)
See Also
- riccati — Riccati equation
Report an issue | ||
<< repfreq | CACSD | ricc >> |