
This method utilizes the estimator (13) in paper Stephanou, Michael, Varughese, Melvin and Iain Macdonald. "Sequential quantiles via Hermite series density estimation." Electronic Journal of Statistics 11.1 (2017): 570-607 <doi:10.1214/17-EJS1245>, with some modifications to improve the stability of numerical root finding.
# S3 method for hermite_estimator_univar
quant(h_est_obj, p, algorithm = "interpolate", accelerate_series = TRUE)
A numeric vector. The vector of quantile values associated with the probabilities p.
A hermite_estimator_univar object.
A numeric vector. A vector of probability values.
A string. Two possible values 'interpolate' which is faster but may be less accurate or 'bisection' which is slower but potentially more accurate.
A boolean value. If set to TRUE, the series acceleration methods described in:
Boyd, John P., and Dennis W. Moore. "Summability methods for Hermite functions." Dynamics of atmospheres and oceans 10.1 (1986): 51-62.
are applied. If set to FALSE, then standard summation is applied.