Implementation of Matlab tic()
command
tic()
commandUsed in conjunction with toc()
to find the elapsed time when code is executed.
tic(type = c("elapsed", "user.self", "sys.self"))
type
: can be either "elapsed"
"user.self"
or "sys.self"
time tic was called
tic() Sys.sleep(3) toc()
toc