deleting multiple rows in a matrix
Mostrar comentarios más antiguos
how can i completely remove the first 113475 rows in a (879999*1) matrix
1 comentario
varun sahni
el 2 de Nov. de 2015
m=rand(879999,1) m(1:113475,:)=[]
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 15 de Feb. de 2013
A(1:113475)=[]
1 comentario
Brian Russell
el 24 de Abr. de 2021
This is not a correct answer. It should read: A(1:113475, :) = [ ]
Categorías
Más información sobre Creating and Concatenating Matrices 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!