R/Log.R

Defines functions Log

Documented in Log

#[export]
Log <- function(x, na.rm = FALSE) {
	if(na.rm){
		x <- x[-is.na(x)]
	}
  	.Call(Rfast_Log,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.