Labeling arrays of matrix and accessing another array of matrix
1 view (last 30 days)
Show older comments
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
0 Comments
Answers (1)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!