R/tic.R

Defines functions tic

Documented in tic

#' @name   tic
#' @title  Start timing
#' @author Gene Leynes
#'
#' @description
#' 		Matlab inspired timing method.  Put tic() at the start of a process, and
#' 		toc() at the end.
#'
#' @details
#'      Creates a global variable called ticTime.
#'      
#' 		System.time is preferred (see see also).
#' 		
#' @seealso
#' 	\code{\link{toc}}
#' 	\code{\link[base]{system.time}}
#' 	


tic <-
function()
	ticTime<<-proc.time()
geneorama/geneorama documentation built on Oct. 17, 2020, 12:35 a.m.