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]

采纳的回答

galaxy
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 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品


版本

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by