deleting multiple rows in a matrix
Afficher commentaires plus anciens
how can i completely remove the first 113475 rows in a (879999*1) matrix
1 commentaire
varun sahni
le 2 Nov 2015
m=rand(879999,1) m(1:113475,:)=[]
Réponse acceptée
Plus de réponses (1)
Azzi Abdelmalek
le 15 Fév 2013
A(1:113475)=[]
1 commentaire
Brian Russell
le 24 Avr 2021
This is not a correct answer. It should read: A(1:113475, :) = [ ]
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!