Rank and Linear Systems Properties of Matrices

rank(A) Returns the rank of A, that is, the number of linearly independent columns in A.

geninv(A) Returns L, the generalized (pseudo) inverse of A, which gives the least-squares solution to a system of equations. If x = L·b, then x is the minimum of |A·x − b|2. If A is square, and non-singular, then geninv returns A−1.

rref(A) Returns the row-reduced echelon form of A.

Arguments:

Notes:

QuickSheet