R/cMx.R

Defines functions cMx

Documented in cMx

#' Make a column matrix
#'
#' ## The function is currently defined as
#' function (Input)
#' {
#'   as.matrix(Input)
#' }
#' @param Input input to be converted to a matrix
#' @author James T. Thorson
#' @export
#'
cMx <-
  function(Input) {
    as.matrix(Input)
  }
nwfsc-assess/nwfscAgeingError documentation built on Sept. 24, 2023, 10:19 a.m.