Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.1 - Português

Change language to:
English - Français - 日本語 -

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Ajuda Scilab >> Data e Hora > datevec

datevec

Date components

Calling Sequence

V=datevec(DT)
[Y,M,D,H,MI,S]=datevec(DT)

Description

V = datevec(DT) converts a serial date number (defined by datenum) to a date vector V having elements [year, month, day, hour, minute, second]. The first five vector elements are integers. DT can be an array.

[Y, M, D, H, MI, S] = datevec(DT) returns the components of the date vector as individual variables. DT can be an array.

Examples

// First example
datevec(720840)

// Second example
datevec(datenum())

// Third example (With integers values)
A = grand(10,12,'uin',1,1000000)
datevec(A)

// Fourth example (With real values)
A = grand(10,12,'unf',1,1000000)
datevec(A)

See Also

Authors

  • A.C
<< datenum Data e Hora eomday >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Thu Mar 03 11:00:37 CET 2011