pnorm_parallel {hpa}R 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).


[Package hpa version 1.3.3 Index]