ddnorm: Derivative of the Normal Distribution's Density Function

Description Usage Arguments Value Author(s) See Also Examples

View source: R/ddnorm.R

Description

This function returns the derivative(s) of the density function of the normal (Gaussian) distribution with respect to the quantile, evaluated at the quantile(s), mean(s), and standard deviation(s) specified by arguments x, mean, and sd, respectively.

Usage

1
ddnorm( x, mean = 0, sd = 1 )

Arguments

x

quantile or vector of quantiles.

mean

mean or vector of means.

sd

standard deviation or vector of standard deviations.

Value

numeric value(s): derivative(s) of the density function of the normal distribution with respect to the quantile

Author(s)

Arne Henningsen

See Also

dnorm

Examples

1
ddnorm( c( -1, 0, 1 ) )

Example output

[1]  0.2419707  0.0000000 -0.2419707

miscTools documentation built on Dec. 9, 2019, 3 a.m.

Related to ddnorm in miscTools...