Hello,
I have a matrix
[2 3 4 5 6 7]
a=2
b=3
i want to swap two values
ans is
[3 2 4 5 6 7]

1 Kommentar

Raihan Ahmed
Raihan Ahmed am 22 Aug. 2015
Easy Method to do this is swapping Using index
b=[2:7]; b=b([2,1,3:end]);
this will give you the result :)

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

ES
ES am 24 Jan. 2014

0 Stimmen

InMtx=[2 3 4 5 6 3 3 4 2];
a=2;
b=3;
Twos=InMtx==a;
Threes=InMtx==b;
InMtx(Twos)=b;
InMtx(Threes)=a;

Weitere Antworten (1)

Neel Shah
Neel Shah am 1 Nov. 2019

0 Stimmen

how to swap element in the 3*3 matrix
like a(2,1)=a(4,3)
a(4,3)=a(2,1)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 24 Jan. 2014

Beantwortet:

am 1 Nov. 2019

Community Treasure Hunt

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

Start Hunting!

Translated by