R/abind3.R

Defines functions abind3

Documented in abind3

#' Convenience function for stacking matrices into an array.
#'
#' This function extends the abind function from the abind package.
#'
#'
#' @importFrom abind abind
#' @param ... Any number of matrices of equal dimension to stack together into
#'  a 3d matrix
#' 

abind3 = function(...) {
  
  abind(..., along=3)
  
}

Try the telefit package in your browser

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

telefit documentation built on Feb. 4, 2020, 9:08 a.m.