|
template<class T > |
T | lsst::afw::math::details::norm (const T &x) |
|
template<class T > |
T | lsst::afw::math::details::real (const T &x) |
|
template<class T > |
T | lsst::afw::math::details::Epsilon () |
|
template<class T > |
T | lsst::afw::math::details::MinRep () |
|
template<class T > |
T | lsst::afw::math::details::rescale_error (T err, T const &resabs, T const &resasc) |
|
template<class UF > |
bool | lsst::afw::math::details::intGKPNA (UF const &func, IntRegion< typename UF::result_type > ®, typename UF::result_type const epsabs, typename UF::result_type const epsrel, std::map< typename UF::result_type, typename UF::result_type > *fxmap=0) |
| Non-adaptive integration of the function f over the region 'reg'. More...
|
|
template<class UF > |
void | lsst::afw::math::details::intGKP (UF const &func, IntRegion< typename UF::result_type > ®, typename UF::result_type const epsabs, typename UF::result_type const epsrel, std::map< typename UF::result_type, typename UF::result_type > *fxmap=0) |
| An adaptive integration algorithm which computes the integral of f over the region reg. More...
|
|
template<class UF > |
AuxFunc1< UF > | lsst::afw::math::details::Aux1 (UF uf) |
| Auxiliary function 1. More...
|
|
template<class UF > |
AuxFunc2< UF > | lsst::afw::math::details::Aux2 (UF uf) |
| Auxiliary function 2. More...
|
|
template<class BF , class Tp > |
binder2_1< BF > | lsst::afw::math::details::bind21 (const BF &oper, const Tp &x) |
|
template<class TF , class Tp > |
binder3_1< TF > | lsst::afw::math::details::bind31 (const TF &oper, const Tp &x) |
|
template<class UF > |
UF::result_type | lsst::afw::math::int1d (UF const &func, IntRegion< typename UF::result_type > ®, typename UF::result_type const &abserr=DEFABSERR, typename UF::result_type const &relerr=DEFRELERR) |
| Front end for the 1d integrator. More...
|
|
template<class BF , class YREG > |
BF::result_type | lsst::afw::math::int2d (BF const &func, IntRegion< typename BF::result_type > ®, YREG const &yreg, typename BF::result_type const &abserr=DEFABSERR, typename BF::result_type const &relerr=DEFRELERR) |
| Front end for the 2d integrator. More...
|
|
template<class TF , class YREG , class ZREG > |
TF::result_type | lsst::afw::math::int3d (TF const &func, IntRegion< typename TF::result_type > ®, YREG const &yreg, ZREG const &zreg, typename TF::result_type const &abserr=DEFABSERR, typename TF::result_type const &relerr=DEFRELERR) |
| Front end for the 3d integrator. More...
|
|
template<class BF > |
BF::result_type | lsst::afw::math::int2d (BF const &func, IntRegion< typename BF::result_type > ®, IntRegion< typename BF::result_type > &yreg, typename BF::result_type const &abserr=DEFABSERR, typename BF::result_type const &relerr=DEFRELERR) |
| Front end for the 2d integrator. More...
|
|
template<class TF > |
TF::result_type | lsst::afw::math::int3d (TF const &func, IntRegion< typename TF::result_type > ®, IntRegion< typename TF::result_type > &yreg, IntRegion< typename TF::result_type > &zreg, typename TF::result_type const &abserr=DEFABSERR, typename TF::result_type const &relerr=DEFRELERR) |
| Front end for the 3d integrator. More...
|
|
template<typename UnaryFunctionT > |
UnaryFunctionT::result_type | lsst::afw::math::integrate (UnaryFunctionT func, typename UnaryFunctionT::argument_type const a, typename UnaryFunctionT::argument_type const b, double eps=1.0e-6) |
| The 1D integrator. More...
|
|
template<typename BinaryFunctionT > |
BinaryFunctionT::result_type | lsst::afw::math::integrate2d (BinaryFunctionT func, typename BinaryFunctionT::first_argument_type const x1, typename BinaryFunctionT::first_argument_type const x2, typename BinaryFunctionT::second_argument_type const y1, typename BinaryFunctionT::second_argument_type const y2, double eps=1.0e-6) |
| The 2D integrator. More...
|
|