Labeling arrays of matrix and accessing another array of matrix
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Operators and Elementary Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!