create non uniform increment vector

조회 수: 6 (최근 30일)
Oday Shahadh
Oday Shahadh 2020년 6월 12일
답변: KSSV 2020년 6월 12일
hi
how can I in a single command creat this vector:
a=12345678910987654321
thanks

답변 (2개)

Robin Kirsch
Robin Kirsch 2020년 6월 12일
편집: Robin Kirsch 2020년 6월 12일
a = [1:10 9:-1:1]
a =
Columns 1 through 13
1 2 3 4 5 6 7 8 9 10 9 8 7
Columns 14 through 19
6 5 4 3 2 1

KSSV
KSSV 2020년 6월 12일
k = num2str([1:10 9:-1:1]) ;
k(k == ' ') = [] ;
k

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by