How do you create a new vector using every other number from your original vector. Including the first number of the original vector.

조회 수: 1 (최근 30일)
How do you create a new vector using every other number from your original vector. Including the first number of the original vector.

답변 (1개)

per isakson
per isakson 2018년 1월 29일
편집: per isakson 2018년 1월 29일
An example
>> vec = randi(3,1,18) % test data
vec =
Columns 1 through 14
3 3 1 3 2 1 1 2 3 3 1 3 3 2
Columns 15 through 18
3 1 2 3
>> vec( 1 : 2 : end ) % every other value
ans =
3 1 2 1 3 1 3 3 2
a better example
>> vec = 1:18;
>> vec( 1 : 2 : end )
ans =
1 3 5 7 9 11 13 15 17

카테고리

Help CenterFile Exchange에서 Data Types에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by