tic()
t = tic()
| Parameter | Description |
|---|---|
| t | a unsigned integer 64 bit: value of internal timer of the tic function. |
The sequence of commands tic(); commands ; t = toc() returns the number of seconds required for the commands.
Consecutive tic commands overwrite the tic timer.
tic()
sleep(10)
toc()
tic()
sleep(10)
t = toc()
| Version | Description |
|---|---|
| 1.0.0 | initial version |