Borrar filtros
Borrar filtros

how can i delete first number in vector ?

32 visualizaciones (últimos 30 días)
Firas Al-Kharabsheh
Firas Al-Kharabsheh el 25 de Abr. de 2016
Respondida: Star Strider el 25 de Abr. de 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 ]

Respuestas (1)

Star Strider
Star Strider el 25 de Abr. de 2016
Set the first element to the ‘empty’ element:
v(1) = [];

Categorías

Más información sobre NaNs en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by