How do i find only the specific date of the maximum temperature?
Ältere Kommentare anzeigen
Hello,
I have the the data below in which i already the know Maximum the maximum temperature in the TMAX column to be 44.96 by using (max(CVG.TMAX)). Now i want to display the date of this temperature. How do i do that knowing the data is too large and i want to find the date of the maximu temperature(year,month,day)

1 Kommentar
darova
am 18 Aug. 2019
Akzeptierte Antwort
Weitere Antworten (1)
darova
am 18 Aug. 2019
max can also return index
[M,I] = max(a);
Read more in help: max
suleiman abdullahi, I want you to accept my answer.
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

