This is documentation for an old release of SciPy (version 1.0.0). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.linalg.orth¶
-
scipy.linalg.
orth
(A)[source]¶ Construct an orthonormal basis for the range of A using SVD
Parameters: A : (M, N) array_like
Input array
Returns: Q : (M, K) ndarray
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