LagrangeInterpolator.hpp
36 LagrangeInterpolator(const std::vector<double>& xp, const std::vector<double>& yp, unsigned order = 1);
LagrangeInterpolator()
Construct a default LagrangeInterpolator instance.
Definition: LagrangeInterpolator.cpp:42
The namespace containing all components of the Reaktoro library.
Definition: ChemicalScalar.hpp:24
auto operator()(double x) const -> double
Return the interpolation of at a given coordinate .
Definition: LagrangeInterpolator.cpp:49
A class used to calculate interpolation of data in one dimension in any order.
Definition: LagrangeInterpolator.hpp:27