how can i delete first number in vector ?

69 ビュー (過去 30 日間)
Firas Al-Kharabsheh
Firas Al-Kharabsheh 2016 年 4 月 25 日
回答済み: Star Strider 2016 年 4 月 25 日
if i have this number in vector
v = [ 22
13
14
11 ]
i want to delete first number like that
v = [ 13
14
11 ]

回答 (1 件)

Star Strider
Star Strider 2016 年 4 月 25 日
Set the first element to the ‘empty’ element:
v(1) = [];

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by