How to read date and time of a file?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hi! I'm working to plot the displacement time series of a point but I need the time info of each file. The date and time is on the title of each file, like for example "2016.07.08-00.01.08-StaL-001910-Imera_1". The first numbers indicate the date and time when the data was taken. How can I read the date and time as vectors from the file name?
Thanks!
0 Commenti
Risposta accettata
Jan
il 5 Lug 2017
How are the names available? Do you have them in a cell string already or do you want to grap them by dir?
If you have the string
C = '2016.07.08-00.01.08-StaL-001910-Imera_1'
D = sscanf(C, '%d.%d.%d-%d.%d.%d', 6)
2 Commenti
Jan
il 5 Lug 2017
Perhaps:
Date = D(1:3);
Time = D(4:5);
What does "date in one column" exactly means? What is "a structure of the data"? Please post a small example.
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Language Fundamentals 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!