필터 지우기
필터 지우기

find the maximum value of a vector within a defined range

조회 수: 10 (최근 30일)
ignacio bobadilla tapia
ignacio bobadilla tapia 2021년 6월 8일
답변: KSSV 2021년 6월 8일
Along with hello, I need to find the maximum value of a vector within a defined range, so I attach the data in a .txt; the x-axis is a time vector of
t=0:10:1441, being the range [7.8511e+03 8.9426e+03] which I need to know the maximum value, the y-axis is the attached data. Thank you.

답변 (1개)

KSSV
KSSV 2021년 6월 8일
If (t,y) is your data and you want find the max in the range [a b].
idx = y >= a & y <= b ; % get the values lying in [a b]
ti = t(idx) ;
yi = y(idx) ;
[val,idx] = max(yi) ;
[ti(idx) val]

카테고리

Help CenterFile Exchange에서 Problem-Based Optimization Setup에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by