How do I only take the first 1000 elements of a vector?

579 visualizzazioni (ultimi 30 giorni)
My task is to use the first 1000 elements in a vector. So how do I only take the first 1000 elements of a vector? I am new to MATLAB, so any help would be appreciated. I tried finding a source to read about how to do this, but could not find one. Thank you!

Risposta accettata

Walter Roberson
Walter Roberson il 13 Ott 2019
NameOfVariable(1:1000)
  3 Commenti
Felix Mätzler
Felix Mätzler il 27 Apr 2022
Modificato: Felix Mätzler il 27 Apr 2022
I think something like this:
NameOfVariable(length(NameOfVariable) - 999 : length(NameOfVariable))

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su MATLAB in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by