Arrangement of matrix elements in specific order
1 次查看(过去 30 天)
显示 更早的评论
Hello.
I have 2 matrices. A and B.
say:
A = [1 2 4 3];
B = [2 3 1 4];
% the corresponding element (A to B corresponding) of 1 is 2, 2 is 3, 4 is 1 and 3 is 4. Now i need to use this relation in a third matrix C (say).
C = [4 2 3 1];
so that i ger a matrix D having corresponding with C the same as that of A to B. i.e.
D = [1 3 4 2]
0 个评论
采纳的回答
galaxy
2019-10-23
A = [1 2 4 3];
B = [2 3 1 4];
C = [4 2 3 1];
for i=1:4
D(find(C == A(i))) = B(i);
end
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!