This is documentation for an old release of SciPy (version 0.10.0). Read this page in the documentation of the latest stable release (version 1.15.1).

scipy.linalg.orth

scipy.linalg.orth(A)

Construct an orthonormal basis for the range of A using SVD

Parameters :

A : array, shape (M, N)

Returns :

Q : array, shape (M, K)

Orthonormal basis for the range of A. K = effective rank of A, as determined by automatic cutoff

See also

svd
Singular value decomposition of a matrix

Previous topic

scipy.linalg.diagsvd

Next topic

scipy.linalg.cholesky

This Page