Convert an amount of seconds to hours/days/weeks/etc.
이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
편집자 메모: 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 (2026). Convert seconds to human readable string(s) (https://github.com/rodyo/FEX-seconds2human/releases/tag/v1.6), GitHub. 검색 날짜: .
GitHub 디폴트 브랜치를 사용하는 버전은 다운로드할 수 없음
| 버전 | 퍼블리시됨 | 릴리스 정보 | Action |
|---|---|---|---|
| 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
|
||
| 1.4.0.0 | - Added 'decennium' as a time unit
|
||
| 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 |
