Maximum value and its position
조회 수: 1 (최근 30일)
이전 댓글 표시
Guglielmo Giambartolomei
2021년 5월 6일
댓글: Guglielmo Giambartolomei
2021년 5월 7일
Hello,
I have an accelerometric signal and I would like to find the maximum value of the column of the acceleration values and also at what time this maximum value happened (first column). How can I do that?
Thank you,
Guglielmo
댓글 수: 0
채택된 답변
Walter Roberson
2021년 5월 6일
[maxvalue, maxidx] = max(Data(:,2))
time_of_max = Data(maxidx,1)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!