Labeling arrays of matrix and accessing another array of matrix

1 view (last 30 days)
Hie everyone i am new to matlab , and i am stuck in a small technique. Suppose i have a matrix(M) and matrix(N) of same number of rows and each row i want to label it . So that if there is another array 'y' and it is equal to one of the arrays of M matrix. Then it should return me the label and the corresponding row array of matrix N. How will i be able to achieve it.
function sauu
M=[1 2 3 4 5;6 7 8 9 10;11 12 13 14 15]
N=[111 33 55;44 55 66;88 66 99]
y=[6 7 8 9 10];
ty=isequal(M,y)
end

Answers (1)

Image Analyst
Image Analyst on 22 Oct 2017
See ismember(), ismembertol(), or strfind().

Categories

Find more on Characters and Strings in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!