pnorm_parallel: Calculate normal cdf in parallel

View source: R/RcppExports.R

pnorm_parallelR Documentation

Calculate normal cdf in parallel

Description

Calculate in parallel for each value from vector x distribution function of normal distribution with mean equal to mean and standard deviation equal to sd.

Usage

pnorm_parallel(x, mean = 0, sd = 1, is_parallel = FALSE)

Arguments

x

vector of quantiles: should be numeric vector, not just double value.

mean

double value.

sd

double positive value.

is_parallel

if TRUE then multiple cores will be used for some calculations. It usually provides speed advantage for large enough samples (about more than 1000 observations).


hpa documentation built on May 31, 2023, 8:25 p.m.

Related to pnorm_parallel in hpa...