how can i delete first number in vector ?
Show older comments
if i have this number in vector
v = [ 22
13
14
11 ]
i want to delete first number like that
v = [ 13
14
11 ]
Answers (1)
Star Strider
on 25 Apr 2016
Set the first element to the ‘empty’ element:
v(1) = [];
Categories
Find more on Simulink 3D Animation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!