date computations in a table
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Danielle Leblance
le 1 Juin 2017
Commenté : Andrei Bobrov
le 3 Juin 2017
I have a table LC that has a column of dates called "date". The date format is however 19850331. I want to extract the year and the month of this date. How can I do so?
0 commentaires
Réponse acceptée
Andrei Bobrov
le 1 Juin 2017
Modifié(e) : Andrei Bobrov
le 1 Juin 2017
LC.date = datetime(sprintfc('%d',LC.date),'InputFormat','yyyyMMdd');
LC.month_year = [month(LC.date),year(LC.date)]
0 commentaires
Plus de réponses (1)
Peter Perkins
le 2 Juin 2017
Andrei provided the right answer if those data are text, e.g. '19850331' or "19850331". If they are numeric, use
datetime(LC.Date,'ConvertFrom','yyyymmdd')
Voir également
Catégories
En savoir plus sur Dates and Time dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!