Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.1.0 - Français


proj

projection

Séquence d'appel

P = proj(X1,X2)

Paramètres

X1,X2

deux matrices réelles avec un nombre identique de colonnes.

P

matrice réelle de projection (P^2=P)

Description

P est la projection sur X2 parallèlement à X1.

Exemples

X1=rand(5,2);X2=rand(5,3);
P=proj(X1,X2);
norm(P^2-P,1)
trace(P)    // il s'agit de dim(X2)
[Q,M]=fullrf(P);
svd([Q,X2])   // Im(Q) = Im(X2)

Voir aussi

  • projspec — spectral operators
  • orth — calcul d'une base orthogonale
  • orthProj — Computes the orthogonal projection of a point to a polyline in the plane.
  • fullrf — factorisation de rang plein
Report an issue
<< householder Algèbre Lineaire Interpolation >>

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:39:41 CEST 2023