R/All.R

Defines functions colAll rowAll

Documented in colAll rowAll

#[export]
rowAll <- function(x,parallel = FALSE,cores = 0) {
	if(parallel){
		.Call(Rfast_row_all_p,x,cores)
	}else{
		.Call(Rfast_row_all,x)
	}
}

#[export]
colAll <- function(x,parallel = FALSE,cores = 0) {
	if(parallel){
		.Call(Rfast_col_all_p,x,cores)
	}else{
		.Call(Rfast_col_all,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.