length(fin​d((XM(2:en​d)>126.5 & XM(1:end-1)<126.5)| (XM(2:end)<126.5 & XM(1:end-1)>126.5)));

조회 수: 1 (최근 30일)
Can anyone tell me if in this function the terms XM (2: end) and XM (1: end-1) indicate two successive elements of the vector ?. If so, why? thank you in advance

답변 (2개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2022년 2월 23일
편집: KALYAN ACHARJYA 2022년 2월 23일
It represent the total elements in the vector (Except First One)
XM(2:end)
It represent the total elements in the vector (Except last one)
XM(1:end-1)
Indicate two successive elements of the vector (Multiple ways)
XM(1:2)
XM(i:i+1)
XM(end-1:end)
.....

KSSV
KSSV 2022년 2월 23일
편집: KSSV 2022년 2월 23일
They represent second to last and first to last but one elements respectively.
% Example
a = rand(5,1) ;
a
a = 5×1
0.9264 0.3197 0.4573 0.7790 0.4464
[a(2:end) a(1:end-1)]
ans = 4×2
0.3197 0.9264 0.4573 0.3197 0.7790 0.4573 0.4464 0.7790
If you want sucessive elements, it should be
[a(1) a(2)]
[a(4) a(5)]
i,e, a(i) and a(i+1)

카테고리

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