Scilab 5.3.0
- Scilab Online Help
- Linear Algebra
- aff2ab
- balanc
- bdiag
- chfact
- chol
- chsolve
- classmarkov
- cmb_lin
- coff
- colcomp
- companion
- cond
- det
- eigenmarkov
- ereduc
- expm
- fstair
- fullrf
- fullrfk
- genmarkov
- givens
- glever
- gschur
- gspec
- hess
- householder
- im_inv
- inv
- kernel
- kroneck
- linsolve
- lsq
- lu
- lyap
- nlev
- orth
- pbig
- pencan
- penlaur
- pinv
- polar
- proj
- projspec
- psmall
- qr
- quaskro
- randpencil
- range
- rank
- rankqr
- rcond
- rowcomp
- rowshuff
- rref
- schur
- spaninter
- spanplus
- spantwo
- spec
- sqroot
- squeeze
- sva
- svd
- sylv
- trace
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
rref
LU分解により行echelon形式の行列を計算
呼び出し手順
R=rref(A)
パラメータ
- A
スカラーのエントリを有するm x n 行列
- R
Aの行echelon形式のm x n行列
説明
rref
は左LU分解により指定した行列
の行echelon形式を計算します.
X=rref([A,eye(m,m)])
をコールする際に使用した
変換が必要な場合,行echelon形式はX(:,1:n)
となり,
左分解L
はL*A=R
となるような
X(:,n+1:n+m)
により指定されます.
例
A=[1 2;3 4;5 6]; X=rref([A,eye(3,3)]); R=X(:,1:2) L=X(:,3:5);L*A
<< rowshuff | Linear Algebra | schur >> |