How do I select particular data from excel file
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Debayan Mandal
il 4 Dic 2018
Commentato: Debayan Mandal
il 4 Dic 2018
I have an excel file with 2 colum title namely date and time , value. I want each date 14:30 value only. Is it possible to do so?
thanks in advance
0 Commenti
Risposta accettata
Kevin Chng
il 4 Dic 2018
Modificato: Kevin Chng
il 4 Dic 2018
Yes. Try
a = readtable('test.xlsx');
b = a((hour(a.Date_Time)==14 & minute(a.Date_Time)==30),:)
Use logic to get the index of a when hour is 14 and minutes is 30.
Accept my answer if it is working for you.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Import from MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!