i have a m-rows n-columns matrix in matlab, say M. I have a n-element row vector, i.e. an 1-row n-column matrix, say X.
I know X is a row somewhere in M. How can I find the index of M?
|
i have a m-rows n-columns matrix in matlab, say M. I have a n-element row vector, i.e. an 1-row n-column matrix, say X. I know X is a row somewhere in M. How can I find the index of M? |
||||
|
|
EDIT:gnovice's suggestion is even simpler than mine:
FIRST SOLUTION:You can easily do it using
|
|||||||||||
|
|
This is a non-loop version. It is only suitable, if M (your matrix) is not very large, ie. n and m are small. X is your row:
If M is too large, it might be faster, to iterate the rows of M and compare every row with your vector. @Edit: renamed variables to match the names used in the question. |
|||
|
|