Convert seconds to human readable string(s)

版本 1.6 (3.4 KB) 作者: Rody Oldenhuis
Convert an amount of seconds to hours/days/weeks/etc.
2.2K 次下载
更新时间 2020/5/2

编者注: This file was selected as MATLAB Central Pick of the Week

This function converts a (usually large) amount of seconds to human-readable string. For example,
>> str = seconds2human(1463456.3)
str =
'About 2 weeks and 2 days.'
You may also call the function with a second input argument; either 'short' (the default) or 'full'. This determines the level of detail returned in the string:
>> str = seconds2human(1463456.3, 'full')
str =
'2 weeks, 2 days, 22 hours, 30 minutes, 56 seconds.'

The 'short' format returns only the two largest units of time.

Furthermore, [secs] may be an NxM-matrix, in which case the output is an NxM cell array of the corresponding strings.

引用格式

Rody Oldenhuis (2024). Convert seconds to human readable string(s) (https://github.com/rodyo/FEX-seconds2human/releases/tag/v1.6), GitHub. 检索来源 .

MATLAB 版本兼容性
创建方式 R2009b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Dates and Time 的更多信息

Community Treasure Hunt

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

Start Hunting!

无法下载基于 GitHub 默认分支的版本

版本 已发布 发行说明
1.6

See release notes for this release on GitHub: https://github.com/rodyo/FEX-seconds2human/releases/tag/v1.6

1.5.0.0

Description update
[linked to Github]

1.4.0.0

- Added 'decennium' as a time unit
- Implemented more robust error-checking
- Small documentation update

1.3.0.0

Updated contact info

1.2.0.0

- reduced the default verbosity, as suggested by Jos. The verbosity can now be changed with a second argument.

- Included (sec < 1) case, as suggested by Jesse.

1.1.0.0

updated code thanks to Jos' comments.

1.0.0.0

要查看或报告此来自 GitHub 的附加功能中的问题,请访问其 GitHub 仓库
要查看或报告此来自 GitHub 的附加功能中的问题,请访问其 GitHub 仓库