sort data
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
i have an array of data with size of (1,361). I need to select and store all the data from (1,121) to (1,241) into anther array. How can i do this?
0 comentarios
Respuesta aceptada
Walter Roberson
el 18 de Mzo. de 2012
newarray = oldarray(121:241);
I note that your title asks about "sort data", but I do not see any reference to sorting in your question?
Más respuestas (1)
the cyclist
el 18 de Mzo. de 2012
% Input
A = rand(1,361);
% Select and store
B = A(121:241);
0 comentarios
Ver también
Categorías
Más información sobre Shifting and Sorting Matrices 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!