Arrangement of matrix elements in specific order

1 visualización (últimos 30 días)
Tanveer ul haq
Tanveer ul haq el 23 de Oct. de 2019
Respondida: galaxy el 23 de Oct. de 2019
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]

Respuesta aceptada

galaxy
galaxy el 23 de Oct. de 2019
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

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Productos


Versión

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by