how to detect this 2nd peak in a array ?

조회 수: 1 (최근 30일)
shubham kumar gupta
shubham kumar gupta 2021년 6월 6일
답변: Sulaymon Eshkabilov 2021년 6월 6일
i have a array I want to find this 2nd peak
array of 1x2048
I want to iterate from back to this point i.e at X=1427+5(just before the start of 2nd peak)

채택된 답변

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021년 6월 6일
This can be solved in a relatively simple way, i.e.
V = .. % Signal
[V1, Index1] = max(V);
[V2, Index2] = max(V(1427+5:end));

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

태그

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by