필터 지우기
필터 지우기

how can i delete first number in vector ?

조회 수: 32 (최근 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 CenterFile Exchange에서 NaNs에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by