What is the equivalent datetime() call to the clock() function?

2 次查看(过去 30 天)
I have some code from 2010 that uses clock(), which is not recommended in R2022b. clock() returns an array of double. How can I get this result by using datetime()? I don't see any examples that do this. For example,
c = clock
c is [2024 4 5 10 47 21.9]

采纳的回答

Stephen23
Stephen23 2024-4-15
编辑:Stephen23 2024-4-16
Note that DATETIME is an object with properties, so (depending on your requirements) accessing its properties is a simple option that does not require calling any other functions:
dt = datetime('now')
dt = datetime
15-Apr-2024 21:23:12
dt.Year
ans = 2024
dt.Month
ans = 4
dt.Day
ans = 15
dt.Hour
ans = 21
dt.Minute
ans = 23
dt.Second
ans = 12.2519

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Dates and Time 的更多信息

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by