How to remove multiple elements in a row matrix

3 views (last 30 days)
I have a 40000x1 matrix and just want to remove elements 1 to 2834. How do I do this?

Answers (1)

Alex Mcaulley
Alex Mcaulley on 20 Feb 2020
Edited: Alex Mcaulley on 20 Feb 2020
This is a very basic problem. I recommend you to do the Matlab tutorial
Being A your array:
A = A(2835:end);

Categories

Find more on Operators and Elementary Operations in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!