Reputation: 13927
I am looking for a way to return the index of where a particular row resides in matrix. I can guarantee every row to be unique, as well as the row to always exist in the matrix. How can I do this in matlab?
For example, Suppose you have a matrix c
:
c =
1 2 3
3 2 1
further, you have a matrix b
:
b =
1 2 3
I would like some function func
where I could call
func(b,c)
1
or even just return:
0
1
Upvotes: 10
Views: 10068