MCPcopy Create free account
hub / github.com/RcppCore/Rcpp / dnorm

Function dnorm

inst/include/Rcpp/Rmath.h:34–34  ·  view source on GitHub ↗

Normal Distribution */

Source from the content-addressed store, hash-verified

32
33 /* Normal Distribution */
34 inline double dnorm(double x, double mu, double sigma, int lg) { return ::Rf_dnorm4(x, mu, sigma, lg); }
35 inline double pnorm(double x, double mu, double sigma, int lt, int lg) { return ::Rf_pnorm5(x, mu, sigma, lt, lg); }
36 inline double qnorm(double p, double mu, double sigma, int lt, int lg) { return ::Rf_qnorm5(p, mu, sigma, lt, lg); }
37 inline double rnorm(double mu, double sigma) { return ::Rf_rnorm(mu, sigma); }

Callers 2

runit_dnormFunction · 0.85
runit_dnormFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected