Effacer les filtres
Effacer les filtres

how can i delete first number in vector ?

32 vues (au cours des 30 derniers jours)
Firas Al-Kharabsheh
Firas Al-Kharabsheh le 25 Avr 2016
if i have this number in vector
v = [ 22
13
14
11 ]
i want to delete first number like that
v = [ 13
14
11 ]

Réponses (1)

Star Strider
Star Strider le 25 Avr 2016
Set the first element to the ‘empty’ element:
v(1) = [];

Catégories

En savoir plus sur NaNs dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by