Sortrows_function of a Matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
T=[1:10;40,43,18,43,34,18,23,31,44,38]';
T=ShortestTime(T)
T=LongestTime(T)
function [c]=ShortestTime(T)
c=sortrows(T,[2 1])
end
function [c]=LongestTime(T)
c=sortrows(T,[-2 1])
end
Hi, I wrote a little script to sort a matrix. But now I want that Matlab write only the first column of the matrix. How do I do that?
0 comentarios
Respuestas (1)
Ameer Hamza
el 14 de Mzo. de 2020
You can get the first column of a matrix by indexing like this
first_column = T(:,1);
2 comentarios
Ameer Hamza
el 14 de Mzo. de 2020
I am not sure about your question. Maybe you want to save them in different variables
T=[1:10;40,43,18,43,34,18,23,31,44,38]';
T1=ShortestTime(T);
T2=LongestTime(T);
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!