StartTimer (function)

Time of starting a measurement processing

StartTimer

Parameters
None.

Return Value
Time information at the time of StartTimer is called.

Description
Start the elapse time measure.
Gets the elapsed time since the specified measurement start time in Timer function.
Standard use as follows, measuring the elapsed time from calling the StartTimer function to the Timer function by passing it to the first argument of the Timer function, after the return value of this function is stored in the real type variable (the real type array element is acceptable).
T#=StartTimer
*(Processing to be measured at processing time)
TIME&=Timer(T#,0)
In this program, the processing time of each ms of the processing (the *part) will be stored in the integer type variable named TIME&.

Notes