How can i get corresponding value in a table?
조회 수: 5 (최근 30일)
이전 댓글 표시
for example maximum of the table is obtained but need to find at what time is it obtained
댓글 수: 2
답변 (1개)
Samatha Aleti
2020년 3월 24일
Hi,
As per my understanding, you are trying to find the corresponding “time” value of a maximum value in the timetable. You can do this by finding the index of maximum.Here is a sample code:
indoors = readtimetable('indoors.csv');
[maxValue maxIndex] = max(indoors.Humidity)
maxT = indoors.Time(maxIndex)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 String Parsing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!