R/feval.R

#' @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.R documentation built on May 19, 2019, 9:26 a.m.