Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.1 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab help >> Linear Algebra > Matrix Analysis > rref

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)となり, 左分解LL*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

参照

  • lu — ピボット選択付きのLU 分解
  • qr — QR 分解
Report an issue
<< rcond Matrix Analysis trace >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Apr 02 17:37:32 CEST 2013