how can i completely remove the first 113475 rows in a (879999*1) matrix

 Réponse acceptée

José-Luis
José-Luis le 15 Fév 2013
your_mat = your_mat(113476:end,:);
Please read the Getting started part of the documentation.

1 commentaire

shanmukh
shanmukh le 15 Fév 2013
thank you, i takes time but i get the required output

Connectez-vous pour commenter.

Plus de réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 15 Fév 2013

2 votes

A(1:113475)=[]

1 commentaire

Brian Russell
Brian Russell le 24 Avr 2021
This is not a correct answer. It should read: A(1:113475, :) = [ ]

Connectez-vous pour commenter.

Catégories

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by