How to remove multiple elements in a row matrix
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have a 40000x1 matrix and just want to remove elements 1 to 2834. How do I do this?
0 Commenti
Risposte (1)
Alex Mcaulley
il 20 Feb 2020
Modificato: Alex Mcaulley
il 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);
0 Commenti
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!