Scilab-Branch-5.3-GIT
- Scilab 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
range
A^kの範囲
呼び出し手順
[X,dim]=range(A,k)
パラメータ
- A
実数正方行列
- k
整数
- X
直交実数行列
- dim
整数 (部分空間の次元)
説明
範囲 A^k
を計算します ; the first dim rows of X
の
最初の dim 行は, A^k
の範囲に広がります.
X
の最後の行は,
この直交相補な範囲に広がります.
X*X'
は単位行列です.
例
A=rand(4,2)*rand(2,4); // 4 列ベクトル, 2 独立. [X,dim]=range(A,1);dim // 範囲を計算 y1=A*rand(4,1); //Aの範囲のベクトル y2=rand(4,1); //Aの範囲にないベクトル norm(X(dim+1:$,:)*y1) //最後のエントリはゼロ, y1 はAの範囲 norm(X(dim+1:$,:)*y2) //最後のエントリは非ゼロ I=X(1:dim,:)' //I が範囲の基底is a basis of the range coeffs=X(1:dim,:)*y1 // 基底Iに関連るy1の要素 norm(I*coeffs-y1) //check
作者
F. D. INRIA ;
<< randpencil | Linear Algebra | rank >> |