27#ifndef math_func_moffat_hpp
28#define math_func_moffat_hpp
72template <
typename realT>
81 return I0 +
Ipk *
pow(
static_cast<realT
>( 1 ) +
pow( x - x0, 2 ) /
pow( alpha, 2 ), -beta );
85moffat<float>(
const float x,
const float I0,
const float Ipk,
const float x0,
const float alpha,
const float beta );
87extern template double moffat<double>(
88 const double x,
const double I0,
const double Ipk,
const double x0,
const double alpha,
const double beta );
90extern template long double moffat<long double>(
const long double x,
92 const long double Ipk,
94 const long double alpha,
95 const long double beta );
126template <
typename realT>
137 return I0 +
Ipk *
pow(
static_cast<realT
>( 1 ) + (
pow( x - x0, 2 ) +
pow( y - y0, 2 ) ) /
pow( alpha, 2 ), -beta );
140extern template float moffat2D<float>(
const float x,
149extern template double moffat2D<double>(
const double x,
158extern template long double moffat2D<long double>(
const long double x,
160 const long double I0,
161 const long double Ipk,
162 const long double x0,
163 const long double y0,
164 const long double alpha,
165 const long double beta );
192template <
typename realT>
197 return 2 * alpha *
sqrt(
pow(
static_cast<realT
>( 2 ),
static_cast<realT
>( 1 ) / beta ) - 1 );
200extern template float moffatFWHM(
float alpha,
float beta );
202extern template double moffatFWHM(
double alpha,
double beta );
204extern template long double moffatFWHM(
long double alpha,
long double beta );
realT moffatFWHM(realT alpha, realT beta)
Compute the full-width at half-maximum of a Moffat profile.
realT moffat(const realT x, const realT I0, const realT Ipk, const realT x0, const realT alpha, const realT beta)
Find value at position (x) of the 1D arbitrarily-centered symmetric unnormalized Moffat function.
realT moffat2D(const realT x, const realT y, const realT I0, const realT Ipk, const realT x0, const realT y0, const realT alpha, const realT beta)
Find value at position (x,y) of the 2D arbitrarily-centered unnormalized symmetric Moffat function.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.