| ea_phi_uniGaussian_DL_bounds | R Documentation |
Finds the lower and upper bounds of the phi function between an interval
ea_phi_uniGaussian_DL_bounds(mean, sd, beta, precondition, lower, upper)
mean |
mean value |
sd |
standard deviation value |
beta |
real value |
precondition |
precondition value |
lower |
lower end of interval |
upper |
upper end of interval |
A list of components
lower bound of phi
upper bound of phi
mu <- 0.423
sd <- 3.231
beta <- 0.8693
precondition <- 1.243
lower <- -2.823
upper <- 4.322
curve(ea_phi_uniGaussian_DL(x, mu, sd, beta, precondition), lower, upper)
abline(h=ea_phi_uniGaussian_DL_bounds(mean = mu,
sd = sd,
beta = beta,
lower = lower,
upper = upper,
precondition = precondition),
col = 'red', lty = 2)
# another example where the mean is not in the interval
mu <- 0.423
sd <- 3.231
beta <- 0.8693
precondition <- 1.243
lower <- 2.823
upper <- 5.322
curve(ea_phi_uniGaussian_DL(x, mu, sd, beta, precondition), lower, upper)
abline(h=ea_phi_uniGaussian_DL_bounds(mean = mu,
sd = sd,
beta = beta,
precondition = precondition,
lower = lower,
upper = upper),
col = 'red', lty = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.