Sorting 1 column with repect to other column....

2 Ansichten (letzte 30 Tage)
inzamam shoukat
inzamam shoukat am 17 Jan. 2019
Beantwortet: madhan ravi am 17 Jan. 2019
1.0000 56.6260
2.0000 88.6820
3.0000 84.2882
4.0000 93.1880
5.0000 111.9330
6.0000 95.1210
7.0000 124.4126
8.0000 107.7010
9.0000 110.1771
10.0000 137.8133
I want to sort 1 column with repect to Second column....

Antworten (1)

madhan ravi
madhan ravi am 17 Jan. 2019
a=[ 1.0000 56.6260
2.0000 88.6820
3.0000 84.2882
4.0000 93.1880
5.0000 111.9330
6.0000 95.1210
7.0000 124.4126
8.0000 107.7010
9.0000 110.1771
10.0000 137.8133];
[~,I]=sort(a(:,2));
a(I,:) % sorts second column and arranges first column according to second cloumn

Kategorien

Mehr zu Shifting and Sorting Matrices finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by