R/cholesky.R

Defines functions cholesky

Documented in cholesky

#[export]
cholesky <- function(x,parallel = FALSE) {
	if(parallel){
		.Call(Rfast_cholesky_par,x)
	}else{
  		.Call(Rfast_cholesky,x)
	}
}

Try the Rfast package in your browser

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

Rfast documentation built on Nov. 9, 2023, 5:06 p.m.