deleting multiple rows in a matrix
Mostra commenti meno recenti
how can i completely remove the first 113475 rows in a (879999*1) matrix
1 Commento
varun sahni
il 2 Nov 2015
m=rand(879999,1) m(1:113475,:)=[]
Risposta accettata
Più risposte (1)
Azzi Abdelmalek
il 15 Feb 2013
A(1:113475)=[]
1 Commento
Brian Russell
il 24 Apr 2021
This is not a correct answer. It should read: A(1:113475, :) = [ ]
Categorie
Scopri di più su Creating and Concatenating Matrices in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!