ea_phi_uniGaussian_DL_LB | R Documentation |
Finds the global bound of the phi function between a given interval
ea_phi_uniGaussian_DL_LB(mean, sd, beta, precondition)
mean |
mean value |
sd |
standard deviation value |
beta |
real value |
precondition |
precondition value |
The global lower 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, precondition = precondition, lower = lower, upper = upper), col = 'red', lty = 2) abline(h=ea_phi_uniGaussian_DL_LB(mean = mu, sd = sd, beta = beta, precondition = precondition), col = 'blue', lty = 3) # 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, lower = lower, upper = upper, precondition = precondition), col = 'red', lty = 2) abline(h=ea_phi_uniGaussian_DL_LB(mean = mu, sd = sd, beta = beta, precondition = precondition), col = 'blue', lty = 3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.