Scilab 5.3.3
- Aide Scilab
- Algèbre Lineaire
- bdiag
- chfact
- chol
- chsolve
- cmb_lin
- coff
- colcomp
- companion
- cond
- det
- expm
- fullrf
- fullrfk
- givens
- glever
- gspec
- hess
- householder
- inv
- kernel
- linsolve
- lu
- lyap
- nlev
- orth
- pbig
- pinv
- polar
- proj
- qr
- range
- rank
- rcond
- rowcomp
- spec
- sqroot
- squeeze
- sva
- svd
- trace
- aff2ab
- balanc
- classmarkov
- eigenmarkov
- ereduc
- fstair
- genmarkov
- gschur
- im_inv
- kroneck
- lsq
- pencan
- penlaur
- projspec
- psmall
- quaskro
- randpencil
- rankqr
- rowshuff
- rref
- schur
- spaninter
- spanplus
- spantwo
- sylv
Aide Scilab >> Algèbre Lineaire > gschur
gschur
generalized Schur form (obsolete).
Calling Sequence
[As,Es]=gschur(A,E) [As,Es,Q,Z]=gschur(A,E) [As,Es,Z,dim] = gschur(A,E,flag) [As,Es,Z,dim]= gschur(A,E,extern)
Description
This function is obsolete and is now included in the schur
function. In most cases the gschur function will still work as
before, but it will be removed in the future release.
The first three syntaxes can be replaced by
[As,Es]=schur(A,E) [As,Es,Q,Z]=schur(A,E);Q=Q' //NOTE THE TRANPOSITION HERE [As,Es,Z,dim] = schur(A,E,flag)
The last syntax requires little more adaptations:
- if
extern is a scilab function the new calling sequence should be
[As,Es,Z,dim]= schur(A,E,Nextern)with Nextern defined as follow:- if
extern is the name of an external function coded in Fortran or C the new calling sequence should be
[As,Es,Z,dim]= schur(A,E,'nextern')with nextern defined as follow:
See Also
| << genmarkov | Algèbre Lineaire | im_inv >> |