How to delete rows from an array?
Mostrar comentarios más antiguos
Given an array of double of size 929x1, I want to obtain a reduced double array with the first 549 lines of the previous one. In short, given a double-sized array of 929x1, we want to eliminate the last 380 lines. How can I do??
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 1 de Mzo. de 2019
0 votos
a = a(1:549,:);
Categorías
Más información sobre Operators and Elementary Operations en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!