In a array, finding x for the first instance of y.

조회 수: 1 (최근 30일)
Jason Burke
Jason Burke 2021년 4월 8일
답변: Star Strider 2021년 4월 8일
I have a 2d array where x is time and y is result. I am trying to find the first time when y==1.

채택된 답변

Star Strider
Star Strider 2021년 4월 8일
Depending on what you want:
idx = find(y>=1, 1, 'first');
time = x(idx);
or:
idx = find(y>=1, 1, 'first');
time = interp1(y(idx-2:idx), x(idx-2:idx), 1);
The interpolation works if ‘y’ is not exactly equal to 1 and you want to know what that interpolated time would be.
Choose the approach that works best in the context of your problem.

추가 답변 (0개)

카테고리

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

태그

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by