cfS_Wigner | R Documentation |
(-1,1)
.cfS_Wigner(t,coef,niid)
is an ALIAS of the more general function cf_WignerSemicircle
,
used to evaluate the characteristic function of a linear combination of
independent symmetric WIGNER SEMICIRCLE distributed random variables.
The characteristic function of the symmetric WIGNER distribution on
(-1,1)
is cf(t) = 2*besselj(1,t)/t
.
cfS_Wigner(t, coef, niid)
t |
vector or array of real values, where the CF is evaluated. |
coef |
vector of the coefficients of the linear combination of the Beta distributed random variables.
If |
niid |
scalar convolution coeficient |
Characteristic function of a linear combination of independent symmetric WIGNER SEMICIRCLE distributed random variables.
Ver.: 11-Aug-2021 15:51:34 (consistent with Matlab CharFunTool v1.5.1, 18-Sep-2018 00:45:54).
WITKOVSKY V. (2016). Numerical inversion of a characteristic function: An alternative tool to form the probability distribution of output quantity in linear measurement models. Acta IMEKO, 5(3), 32-44.
For more details see WIKIPEDIA: https://en.wikipedia.org/wiki/Wigner_semicircle_distribution.
Other Continuous Probability Distribution:
cfS_Arcsine()
,
cfS_Beta()
,
cfS_Gaussian()
,
cfS_Laplace()
,
cfS_Rectangular()
,
cfS_Student()
,
cfS_TSP()
,
cfS_Trapezoidal()
,
cfS_Triangular()
,
cfX_ChiSquare()
,
cfX_Exponential()
,
cfX_FisherSnedecor()
,
cfX_Gamma()
,
cfX_InverseGamma()
,
cfX_LogNormal()
,
cf_ArcsineSymmetric()
,
cf_BetaNC()
,
cf_BetaSymmetric()
,
cf_Beta()
,
cf_ChiSquare()
,
cf_Exponential()
,
cf_FisherSnedecorNC()
,
cf_FisherSnedecor()
,
cf_Gamma()
,
cf_InverseGamma()
,
cf_Laplace()
,
cf_LogRV_BetaNC()
,
cf_LogRV_Beta()
,
cf_LogRV_ChiSquareNC()
,
cf_LogRV_ChiSquare()
,
cf_LogRV_FisherSnedecorNC()
,
cf_LogRV_FisherSnedecor()
,
cf_LogRV_MeansRatioW()
,
cf_LogRV_MeansRatio()
,
cf_LogRV_WilksLambdaNC()
,
cf_LogRV_WilksLambda()
,
cf_Normal()
,
cf_RectangularSymmetric()
,
cf_Student()
,
cf_TSPSymmetric()
,
cf_TrapezoidalSymmetric()
,
cf_TriangularSymmetric()
,
cf_vonMises()
## EXAMPLE 1
# CF of the symmetric Wigner distribution on (-1,1)
t <- seq(from = -50,
to = 50,
length.out =501)
plotReIm(function(t)
cfS_Wigner(t),
t,
title = "CF of the Wigner distribution on (-1,1)")
##EXAMPLE2
# PDF/CDF of Wigner distribution on (-1,1)
cf <- function(t)
cfS_Wigner(t)
x <- seq(-1,1,length.out = 501)
prob <- c(0.9, 0.95, 0.99)
options <- list()
options$xMin <- -1
options$xMax <- 1
result <- cf2DistGP(cf, x, prob, options)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.