how can i classify my matrix

조회 수: 5 (최근 30일)
ali hadjer
ali hadjer 2015년 11월 15일
답변: Stephen23 2015년 11월 16일
heloo
i have a matrix with two vectors
i want to classify this matrix depending on the second vector for exemple
i have this matrix:
  1. 1 2 3 4 5
  2. 23 3 15 1 32 4
MY MATRIX AFTER CLASSIFICATION WILL BE
  1. 4 2 6 3 1 5
  2. 1 3 4 15 23 32
| MY CODE|
clc;
n=5;
x= 100;
y=100;
net = [rand([1,n])*x;rand([1,n])*y]
%v=SORTROws

채택된 답변

Stephen23
Stephen23 2015년 11월 16일
In just one line:
>> X = [1,2,3,4,5,6;23,3,15,1,32,4];
>> sortrows(X.',2).'
ans =
4 2 6 3 1 5
1 3 4 15 23 32

추가 답변 (1개)

Walter Roberson
Walter Roberson 2015년 11월 16일
[~, idx] = sort(net(2,:));
sorted_net = net(:,idx);

카테고리

Help CenterFile Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by