Macdonald {hwwntest} | R Documentation |
Compute the Macdonald density function for a specified parameter
value m
at a vector of x
values.
Description
Compute the Macdonald density function for a specified parameter
value m
at a vector of x
values.
Usage
Macdonald(x, m)
Arguments
x |
The |
m |
The parameter of the Macdonald's density |
Details
This function computes the Macdonald probability density
function for parameter m
and values at which to
evaluate the density supplied in x
. The mean and
variance of this density is zero and one respectively.
Value
The density
Author(s)
Delyan Savchev and Guy Nason
References
Nason, G.P. and Savchev, D. (2014) White noise testing using wavelets. Stat, 3, 351-362. doi:10.1002/sta4.69
See Also
Examples
#
# Work out density at x=0, 0.5 and 1 for the m=1 Macdonald density
#
Macdonald(x=c(0,0.5,1), m=2)
#[1] 0.3535534 0.2975933 0.2075131
#
# Check that the density integrates to one, e.g. for m=3
#
integrate(Macdonald, lower=-20, upper=20, m=3)
#1 with absolute error < 4.7e-07
[Package hwwntest version 1.3.2 Index]