R/length.R

Defines functions length.grideval_result

Documented in length.grideval_result

#' Length
#'
#' @param x A `grideval_result` object.
#'
#' @return The number of samples `k` in `obj`.
#' @export
length.grideval_result <- function(x) {
  return(nrow(x))
}

Try the copre package in your browser

Any scripts or data that you put into this service are public.

copre documentation built on May 29, 2024, 7:36 a.m.