Matrix Rank in MATLAB

184 Views Asked by At

I want to find the rank of a matrix in Matlab. I wrote gfrank(M) in Matlab but Matlab can not find the rank of the matrix. It say matrix is too large to convert to linear index. What can I do?

1

There are 1 best solutions below

0
On

I don't know what's gfrank(M) in MATLAB.

In MATLAB you calculate the rank of a matrix $ M $ using rank(M).
Namely using the rank() function.