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


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
  • orthProj — Computes the orthogonal projection of a point to a polyline in the plane.
  • fullrf — fatoração de posto completo (ou cheio)
Report an issue
<< householder 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 May 22 12:42:12 CEST 2023