Matrix element changes according to reference

2 次查看(过去 30 天)
i have matrix Y and modify as ANS
Y=[ 11 12 13;
21 22 23;
31 32 33]
A=[1 1;
2 3;
3 2]
ANS=[ 11 13 12;
31 33 32;
21 23 22]
i have A matrix which indicates changes in matrix i.e., 1 is replace with 1, 2 is replace with 3 and 3 is replace with 2
according to that i want to change matrix Y to ANS. Change matrix elements using matrix A

回答(1 个)

Walter Roberson
Walter Roberson 2020-11-29
编辑:Walter Roberson 2020-11-29
Y=[ 11 12 13;
21 22 23;
31 32 33];
A=[1 1;
2 3;
3 2];
Y(A(:,2), A(:,2))
ans = 3×3
11 13 12 31 33 32 21 23 22

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by