tictoc: MATLAB timer functions

tictocR Documentation

MATLAB timer functions

Description

Provides stopwatch timer. Function tic starts the timer and toc updates the elapsed time since the timer was started.

Usage

tic(gcFirst=FALSE)
toc(echo=TRUE)

Arguments

gcFirst

logical scalar. If TRUE, perform garbage collection prior to starting stopwatch

echo

logical scalar. If TRUE, print elapsed time to screen

Details

Provides analog to system.time. Function toc can be invoked multiple times in a row.

Author(s)

P. Roebuck proebuck1701@gmail.com

Examples

tic()
for(i in 1:100) mad(runif(1000))	# kill time
toc()

matlab documentation built on July 1, 2024, 5:07 p.m.