How to generate an array based on the values of another array?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Weimar Yamit Castellanos Cardona
am 25 Okt. 2022
Kommentiert: Weimar Yamit Castellanos Cardona
am 26 Okt. 2022
%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 ]
1 Kommentar
Akzeptierte Antwort
KALYAN ACHARJYA
am 25 Okt. 2022
Bearbeitet: KALYAN ACHARJYA
am 25 Okt. 2022
A=[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
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Types finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!