Jump to content

API Time.MJDToWeekday: Difference between revisions

From Flowcode Help
JonnyW (talk | contribs)
XML import for latest API
 
JonnyW (talk | contribs)
XML import
Line 1: Line 1:
<sidebar>API Contents</sidebar>
<sidebar>API Contents</sidebar>
Gets the day of the week that the MJD represents
Gets the day of the week that the MJD represents

Revision as of 15:58, 16 January 2014

<sidebar>API Contents</sidebar> Gets the day of the week that the MJD represents

Class hierarchy

Time

MJDToWeekday

Parameters

LONG MJD

The Modified Julian Date to alter


Return value

ULONG

Returns the day of the week that the MJD represents


Detailed description

No additional information


Examples

Calling in a calculation

  • Declare a variable 'result' of type ULONG
  • Add to a calculation icon:
    result = ::Time.MJDToWeekday(mjd)

No additional examples