orth
Range space of a matrix.
📝Syntax
O = orth(A)
O = orth(A, tol)
📥Input Arguments
Parameter Description
A Input matrix
tol a numeric value: scalar, singular value tolerance
📤Output Arguments
Parameter Description
O real or complex number (double or single).
📄Description

O = orth(A) returns an orthonormal basis for the range of A.

💡Examples
M = [10 -20 40; -50 20 0; 10 0 30]
O = orth(M)
🔗See Also
svdrank
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub