R/others/Fn.Bernshtein.R

Defines functions Fn.Bernshtein

#' @title Fn.Bernshtein
#' @description Fn.Bernshtein
#' @param x values
#' @param xg given x
#' @param tol tolerance
#' @export
Fn.Bernshtein <- function(x, xg, tol) uniroot(Fn.Bernshtein.aux, interval = c(0,1),
                                     xg = x, tol = tol)$root
mathphysmx/bernstein documentation built on Sept. 3, 2019, 12:57 p.m.