deleting multiple rows in a matrix
Ältere Kommentare anzeigen
how can i completely remove the first 113475 rows in a (879999*1) matrix
1 Kommentar
varun sahni
am 2 Nov. 2015
m=rand(879999,1) m(1:113475,:)=[]
Akzeptierte Antwort
Weitere Antworten (1)
Azzi Abdelmalek
am 15 Feb. 2013
A(1:113475)=[]
1 Kommentar
Brian Russell
am 24 Apr. 2021
This is not a correct answer. It should read: A(1:113475, :) = [ ]
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!