Scilab 5.4.0
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
Report an issue | ||
<< rcond | Matrix Analysis | trace >> |