Benchmark - Measure time {Rfast2} | R Documentation |
Benchmark - Measure time
Description
Benchmark - Measure time.
Usage
benchmark(...,times,envir=parent.frame(),order=NULL)
## S3 method for class 'benchmark'
print(x,...)
Arguments
... |
Expressions to the benchmark function. |
x |
Object of class "benchmark" to print. |
times |
Number of time to measure execution time of the expression. |
envir |
Environment to evaluate the expressions. |
order |
An integer vector to execute the epxressions with this order, otherwise the execution order is random. |
Details
For measuring time we have used C++'s new library "chrono".
Value
The execution time for each expression.
Author(s)
Manos Papadakis
R implementation and documentation: Manos Papadakis papadakm95@gmail.com.
See Also
Examples
benchmark(x <- matrix(runif(10*10),10,10),times=10)
[Package Rfast2 version 0.1.5.2 Index]