How work with "sleep" command in Eviews?
Posted: Fri Dec 20, 2013 2:10 am
Hello!
I would like to use the "sleep" command in Eviews.
For example, look at the the following code:
where elapsed_t = 5, i.e. 5 seconds.
The following code gives similar result:
Why?
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