concatenating 3x1 array
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Muhammad Haziq
am 2 Mär. 2019
Beantwortet: Stephan
am 2 Mär. 2019
I have value like this
18.000000
11.000000
5.635000
I want it to concatenate like this
18:11:5.635
how can I do this can any body guide me.
2 Kommentare
Akzeptierte Antwort
Stephan
am 2 Mär. 2019
Hi,
try:
result = datetime([0 0 0 18 11 5.635], 'Format', 'HH:mm:ss.SSS')
Best regards
Stephan
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices 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!