R/chol.r

Defines functions chol.fmlmat

Documented in chol.fmlmat

#' chol
#' 
#' Cholesky factorization.
#' 
#' @param x
#' An fmlmat matrix.
#' @param ...
#' Ignored.
#' 
#' @name chol
#' @rdname chol
#' @export
chol.fmlmat = function(x, ...)
{
  ret = DATA(x)$dupe()
  linalg_chol(ret)
  wrapfml(linalg_xpose(ret))
}
fml-fam/craze documentation built on June 6, 2020, 2:05 p.m.