Delete rows from array
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Benjamin Cowen
el 2 de Feb. de 2016
Respondida: Image Analyst
el 5 de Feb. de 2016
I have an array called yi1
It has more than 10,000 rows.
How can I delete all rows from 10,000 upwards?
0 comentarios
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 5 de Feb. de 2016
Another way. Assuming a 2D array:
yi1 = yi1(1:9999,:); % Extract first 9,999 rows
0 comentarios
Ver también
Categorías
Más información sobre Multidimensional Arrays 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!