combine integers into date

조회 수: 2 (최근 30일)
Munsell Randall
Munsell Randall 2017년 11월 2일
댓글: Andrei Bobrov 2017년 11월 2일
i have a date in the form of numbers:
year = 2016
month = 6
day = 2
hour = 3
minute = 5
second = 1
How can I combine these values into a date format such as "06/02/2016 03:05:01"
I tried combining into a string but since the variables are only one digit, when i run:
datetime(prod_time,'InputFormat','dd-MM-yyyy HH:mm:ss')
i get:
Error using datetime (line 616)
Unable to parse '6/23/2017 18:6:9' as a date/time using the format 'dd-MM-yyyy HH:mm:ss'.
I'm assuming it's because they are looking for double digits but my variables are only single. How do I get around this?
I'm trying to do this with dynamic data that is being read in from another file.

채택된 답변

Andrei Bobrov
Andrei Bobrov 2017년 11월 2일
y = 2016
M = 6
d = 2
h = 3
m = 5
s = 1
datetime(y,M,d,h,m,s,'F','MM/dd/uuuu HH:mm:ss')
  댓글 수: 3
Walter Roberson
Walter Roberson 2017년 11월 2일
Which MATLAB version are you using? The above code works for me in R2017b.
Andrei Bobrov
Andrei Bobrov 2017년 11월 2일

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dates and Time에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by