concatenating 3x1 array
조회 수: 1 (최근 30일)
이전 댓글 표시
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
채택된 답변
Stephan
2019년 3월 2일
Hi,
try:
result = datetime([0 0 0 18 11 5.635], 'Format', 'HH:mm:ss.SSS')
Best regards
Stephan
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!