matrix.rank {matrixcalc} | R Documentation |
This function returns the rank of a square numeric matrix based on the selected method.
matrix.rank(x, method = c("qr", "chol"))
x |
a matrix |
method |
a character string that specifies the method to be used |
If the user specifies "qr" as the method, then the QR decomposition function is used to obtain the rank. If the user specifies "chol" as the method, the rank is obtained from the attributes of the value returned.
An integer.
If the argument is not a square numeric matrix, then the function presents an error message and stops.
Frederick Novomestky fnovomes@poly.edu
Magnus, J. R. and H. Neudecker (1999) Matrix Differential Calculus with Applications in Statistics and Econometrics, Second Edition, John Wiley.
A <- diag( seq( 1, 4, 1 ) ) matrix.rank( A ) B <- matrix( seq( 1, 16, 1 ), nrow=4, byrow=TRUE ) matrix.rank( B )