|
lsst.afw g3a5ebb7d8a+28b83bf6a5
|
#include <Spline.h>
Public Member Functions | |
| virtual | ~Spline ()=default |
| Spline (Spline const &)=default | |
| Spline (Spline &&)=default | |
| Spline & | operator= (Spline const &)=default |
| Spline & | operator= (Spline &&)=default |
| void | interpolate (std::vector< double > const &x, std::vector< double > &y) const |
| Interpolate a Spline. | |
| void | derivative (std::vector< double > const &x, std::vector< double > &dydx) const |
| Find the derivative of a Spline. | |
| std::vector< double > | roots (double const value, double const x0, double const x1) const |
| Find the roots of Spline - val = 0 in the range [x0, x1). | |
Protected Member Functions | |
| Spline ()=default | |
| void | _allocateSpline (int const nknot) |
| Allocate the storage a Spline needs. | |
Protected Attributes | |
| std::vector< double > | _knots |
| std::vector< std::vector< double > > | _coeffs |
|
virtualdefault |
|
default |
|
default |
|
protecteddefault |
|
protected |
| void lsst::afw::math::detail::Spline::derivative | ( | std::vector< double > const & | x, |
| std::vector< double > & | dydx ) const |
| void lsst::afw::math::detail::Spline::interpolate | ( | std::vector< double > const & | x, |
| std::vector< double > & | y ) const |
| [in] | x | points to interpolate at |
| [out] | y | values of spline interpolation at x |
| std::vector< double > lsst::afw::math::detail::Spline::roots | ( | double const | value, |
| double const | x0, | ||
| double const | x1 ) const |
|
protected |
|
protected |