Azzera filtri
Azzera filtri

take jst the hour and munites from a vector

1 visualizzazione (ultimi 30 giorni)
moulay
moulay il 7 Gen 2015
Risposto: Guillaume il 7 Gen 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

Risposte (1)

Guillaume
Guillaume il 7 Gen 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');

Categorie

Scopri di più su Dates and Time 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!

Translated by