Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.1 - Português

Change language to:
English - Français - 日本語 - Русский

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

Ajuda do Scilab >> Linear Algebra > proj

proj

projeção

Seqüência de Chamamento

P = proj(X1,X2)

Parâmetros

X1,X2

duas matrizes reais com igual número de colunas

P

matriz de projeção de real (P^2=P)

Descrição

P é a projeção sobre X2 paralela a X1.

Ver Também

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

See also

  • projspec — operadores espectrais
  • orth — base ortogonal
  • fullrf — fatoração de posto completo (ou cheio)
Report an issue
<< Subspaces Linear Algebra Interpolação >>

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:
Mon Feb 12 19:58:35 CET 2018