ea_phi_exp_4_DL_bounds: Obtain bounds for phi function

View source: R/RcppExports.R

ea_phi_exp_4_DL_boundsR Documentation

Obtain bounds for phi function

Description

Finds the lower and upper bounds of the phi function between a given interval

Usage

ea_phi_exp_4_DL_bounds(mean, beta, precondition, lower, upper)

Arguments

mean

mean value

beta

beta value

precondition

precondition value

lower

lower end of interval

upper

upper end of interval

Value

A list of components

LB

lower bound of phi

UB

upper bound of phi

Examples

mu <- 0.435
beta <- 0.583
precondition <- 1.243
lower <- 0
upper <- 1.2

curve(ea_phi_exp_4_DL(x, mu, beta, precondition), lower, upper, ylab = 'phi')
abline(v=c(lower, upper))
abline(h=ea_phi_exp_4_DL_bounds(mean = mu,
                                beta = beta,
                                precondition = precondition,
                                lower = lower,
                                upper = upper)
       col = 'red', lty = 2)

rchan26/hierarchicalFusion documentation built on Sept. 11, 2022, 10:30 p.m.