How I can write in code for the Maximum value of 'Y' from left hand side not from right hand side in following figure?

조회 수: 1 (최근 30일)

채택된 답변

Dyuman Joshi
Dyuman Joshi 2022년 8월 2일
Answering according to the image
x=[1 2 3 4 5 6 7 8 9 10 11 12];
y=[3 4 3 2 1 2 3 4 5 6 5 4];
plot(x,y)
locmax=islocalmax(y)
locmax = 1×12 logical array
0 1 0 0 0 0 0 0 0 1 0 0
i=find(locmax,1)
i = 2
maxy=y(i)
maxy = 4
maxx=x(i)
maxx = 2

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Audio and Video Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by