Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: English - Français - Português - Русский -
Scilabヘルプ >> Linear Algebra > proj

proj

投影

呼び出し手順

P = proj(X1,X2)

引数

X1,X2

同じ列の数を有する実数の行列

P

実数の投影行列 (P^2=P)

説明

PX1に平行な X2への投影です.

X1=rand(5,2);X2=rand(5,3);
P=proj(X1,X2);
norm(P^2-P,1)
trace(P)    // This is dim(X2)
[Q,M]=fullrf(P);
svd([Q,X2])   // span(Q) = span(X2)

参照

  • projspec — スペクトル演算子
  • orth — 直交基底
  • fullrf — フルランク分解
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:35:24 CEST 2016