Filter löschen
Filter löschen

change time format to seconds

1 Ansicht (letzte 30 Tage)
asad ali
asad ali am 29 Jun. 2019
Beantwortet: Walter Roberson am 29 Jun. 2019
i have an excel file which i cant share
i am getting time array (char cells) in this format
00:00:00/00
.
.
.
01:36:45/345
"HH:MM:SS/sampling rate"
when i extract data from my excel file
i want to convert every cell of time array in to seconds
can any body help?

Antworten (1)

Walter Roberson
Walter Roberson am 29 Jun. 2019
regexprep(YourCell, '/.*$','')
If you have a recent enough matlab then duration() can convert the character vectors. With older matlab you would want to split into components and convert them into numeric and duration() those; or you could datetime() and then subtract off the beginning of the day to convert to duration

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by