
Last chance! 50% off unlimited learning
Sale ends in
cfX_Beta(t, alpha = 1, beta = 1)
Other Continuous Probability distribution: cfS_Arcsine
,
cfS_Beta
, cfS_Gaussian
,
cfS_Rectangular
,
cfS_StudentT
,
cfS_Trapezoidal
,
cfS_Triangular
,
cfX_ChiSquared
,
cfX_Exponential
, cfX_Gamma
,
cfX_InverseGamma
,
cfX_LogNormal
, cfX_Normal
,
cfX_PearsonV
,
cfX_Rectangular
,
cfX_Triangular
## EXAMPLE1 (CF of the Beta distribution with alpha = 1/2, beta = 3/2)
alpha <- 1 / 2
beta <- 3 / 2
t <- seq(-50, 50, length.out = 501)
plotGraf(function(t)
cfX_Beta(t, alpha, beta), t, title = "CF of the Beta distribution with alpha = 1/2, beta = 3/2")
## EXAMPLE2 (PDF/CDF of the Beta distribution with alpha = 1/2, beta = 3/2)
alpha <- 1 / 2
beta <- 3 / 2
cf <- function(t)
cfX_Beta(t, alpha, beta)
x <- seq(0, 1, length.out = 101)
xRange <- 1
option <- list()
option$dx <- 2 * pi / xRange
result <- cf2DistGP(cf, x, option = option)
Run the code above in your browser using DataLab