I would like to use the "sleep" command in Eviews.
For example, look at the the following code:
Code: Select all
!sleeptime = 0.1
tic
sleep(sleeptime)
scalar elapsed_t = @toc
tocThe following code gives similar result:
Code: Select all
!sleeptime = 10000
tic
sleep(sleeptime)
scalar elapsed_t = @toc
toc