How to generate an array based on the values of another array?

조회 수: 1 (최근 30일)
%Assign values ex: 2 becomes 4, 1 becomes 3, 3 becomes 2.....
A=[2 4;
1 3;
3 2;
4 1 ]
%Replace the new mappings at each position in the following array...ex:
B=[1 3;
3 1;
2 4;
4 3 ]
%New array generated C:
C=[3 2;
2 3;
4 1;
1 2 ]

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2022년 10월 25일
편집: KALYAN ACHARJYA 2022년 10월 25일
A=[1 3;3 1;2 4;4 3]
A = 4×2
1 3 3 1 2 4 4 3
B=A;
A(B==2)=4;
A(B==1)=3;
A(B==3)=2;
A(B==4)=1;
A
A = 4×2
3 2 2 3 4 1 1 2

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Types에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by