how can i classify my matrix
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ali hadjer
el 15 de Nov. de 2015
Respondida: Stephen23
el 16 de Nov. de 2015
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 2 3 4 5
- 23 3 15 1 32 4
MY MATRIX AFTER CLASSIFICATION WILL BE
- 4 2 6 3 1 5
- 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
0 comentarios
Respuesta aceptada
Stephen23
el 16 de Nov. de 2015
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
0 comentarios
Más respuestas (1)
Walter Roberson
el 16 de Nov. de 2015
[~, idx] = sort(net(2,:));
sorted_net = net(:,idx);
0 comentarios
Ver también
Categorías
Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!