TimeToString

Prototype

Matrix TimeToString( Matrix mTime )

Return Value

The return value is a character matrix containing the string output from the TIMEw.d format.

Parameters

Matrix mTime
The SAS time value to be converted. A SAS time value is the number of seconds since midnight.

Remarks

This module converts a SAS time value to a string by processing it with the TIMEw.d format.

Example
m = TimeToString( 5025 );
print m;
print 5025[format=TIME8.];
See Also

DateTimeToString
StringToTime