R/feval.R

Defines functions feval

Documented in feval

#' @title feval
#' @description Helper functions which imitates the behavior of the Matlab feval.
#'
#' @param f Function given to be run.
#' @param ... Passing arguments on to other functions.
#'
#' @export
feval <- function(f,...) {
  f(...)
}
jhoffjann/nmmso_benchmark documentation built on May 19, 2019, 9:27 a.m.