Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português do Brasil - Japanese -
Scilab help >> Linear Algebra > pinv

pinv

pseudoinverse

Calling Sequence

pinv(A,[tol])

Arguments

A

real or complex matrix

tol

real number

Description

X = pinv(A) produces a matrix X of the same dimensions as A' such that:

A*X*A = A, X*A*X = X and both A*X and X*A are Hermitian .

The computation is based on SVD and any singular values lower than a tolerance are treated as zero: this tolerance is accessed by X=pinv(A,tol).

Examples

A=rand(5,2)*rand(2,4);
norm(A*pinv(A)*A-A,1)

See Also

  • rank — rank
  • svd — singular value decomposition
  • qr — QR decomposition

Used Functions

pinv function is based on the singular value decomposition (Scilab function svd).

Comments


Add a comment:
Please login to comment this page.

<< penlaur Linear Algebra polar >>

Consortium Scilab (DIGITEO)
Scilab Enterprises

Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Oct 05 12:09:41 CEST 2011