How to extract the 1 to 4 row and skip 5&6 and continuse 7 and 8 row?

조회 수: 2 (최근 30일)
I have 8*1 matrix.
I want to extract the first four element( 1st to 4th position) in new vector and last 2 element(7&8 position). How can I do it?
x1 =[6856.06600000000
65128.6516000000
6881.95430000000
65135.3738000000
6810.99550000000
65302.1415000000
6836.86630000000
65308.8605000000]
So my new vector will be
new =[6856.06600000000
65128.6516000000
6881.95430000000
65135.3738000000
6836.86630000000
65308.8605000000]

채택된 답변

Nikhil Sapre
Nikhil Sapre 2021년 7월 2일
This should work
new = [x1(1:4)]
new = [new; x1(end-1:end)]
Thanks,
Nikhil

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by