<< planerot | Linear algebra | rcond >> |
r = rank(A) |
r = rank(A, tol) |
matrix: double or single
tolerance
a numeric value: a scalar.
rank(A) returns the number of linearly independent columns in a matrix (rank of the matrix).
X = rand(10, 10);
r = rank(X)
svd.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET