Azzera filtri
Azzera filtri

how can i delete first number in vector ?

32 visualizzazioni (ultimi 30 giorni)
Firas Al-Kharabsheh
Firas Al-Kharabsheh il 25 Apr 2016
Risposto: Star Strider il 25 Apr 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 ]

Risposte (1)

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

Community Treasure Hunt

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

Start Hunting!

Translated by