How can i get corresponding value in a table?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
for example maximum of the table is obtained but need to find at what time is it obtained
2 Kommentare
Antworten (1)
Samatha Aleti
am 24 Mär. 2020
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 Kommentare
Siehe auch
Kategorien
Mehr zu String Parsing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!