Effacer les filtres
Effacer les filtres

take jst the hour and munites from a vector

1 vue (au cours des 30 derniers jours)
moulay
moulay le 7 Jan 2015
hi all!
i have a cellcontains time: hour:munites:second
%%T=
'15:09:16'
'15:09:17'
'15:09:17'
'15:09:18'
'15:09:18'
'15:09:18'
'15:09:19'
'15:09:19'
'15:09:19'
'15:09:20'
'15:09:20'
'15:09:20'
i want just the hours and minutes like this:
T= '15:09' '15:09' '15:09' '15:09' '15:09' '15:09' '15:09' '15:09' '15:09' '15:09' '15:09' '15:09'
Couls someone help?
Thank you all

Réponses (1)

Guillaume
Guillaume le 7 Jan 2015
There are many, many ways to do this, using cellfun, regexp, conversion to datevec or datetime, etc.
One way:
T = regexp(T, '\d+:\d+', 'match', 'once');

Catégories

En savoir plus sur Dates and Time dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by