rank() computation cost

12 visualizaciones (últimos 30 días)
Nicolas Mira Gebauer
Nicolas Mira Gebauer el 30 de Nov. de 2021
Comentada: Walter Roberson el 6 de Dic. de 2021
Hi, does anyone knows which is the computational cost of getting the rank of a matrix through the rank(M) command? (It would be extremelly usefull to have the order of the command using the Big O notation.
Thank you in advance!
Nicolas

Respuesta aceptada

Shanmukha Voggu
Shanmukha Voggu el 3 de Dic. de 2021
Editada: Shanmukha Voggu el 3 de Dic. de 2021
Hi Nicholas,
The Computational Complexity of the rank function is equal to svd function.
which is equal to O(max(m, n) * min(m, n)^2), where m and n are number of rows and columns of the matrix respectively
Refer this for more information.
  5 comentarios
Nicolas Mira Gebauer
Nicolas Mira Gebauer el 6 de Dic. de 2021
Thank you both for the clarification!
Walter Roberson
Walter Roberson el 6 de Dic. de 2021
I was wondering! max(m, n) *min(m, n) as was posted before is the same as m*n, and I couldn't figure out why someone would bother writing it the long way!

Iniciar sesión para comentar.

Más respuestas (0)

Productos


Versión

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by