implement math.rank #2798
ORESoftware
started this conversation in
Ideas
Replies: 2 comments
-
Thanks for your suggestion, implementing Anyone interested in implementing this? Help would be welcome |
Beta Was this translation helpful? Give feedback.
0 replies
-
Warning: computing the rank of a matrix of floating point numbers is numerically intricate, see for example: https://math.stackexchange.com/questions/2238798/numerically-determining-rank-of-a-matrix. So I think it usually uses the singular value decomposition of a matrix, which does not seem to be implemented in mathjs yet. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Not a bug, a feature request:
Doesn't look like I can easily find the rank of a matrix. (Maybe I can do it in two steps given existing methods?). Would like a function call like:
since row rank = col rank, I think one call should be sufficient...I suppose people could always transpose and re-call math.rank if they really wanted to?
Beta Was this translation helpful? Give feedback.
All reactions