Go to the documentation of this file.
35 #ifndef DUMMY_SCALAR_FUNCTIONS
36 #define DUMMY_SCALAR_FUNCTIONS
37 inline float j0f(
float x) {
return float(
j0(
double(x)));}
38 inline float j1f(
float x) {
return float(
j1(
double(x)));}
39 inline float y0f(
float x) {
return float(
y0(
double(x)));}
40 inline float y1f(
float x) {
return float(
y1(
double(x)));}
41 inline float jnf(
const int n,
const float s) {
return float(
jn(n,
double(s))); }
42 inline float ynf(
const int n,
const float s) {
return float(
yn(n,
double(s))); }
74 inline bool equal(
const T& s1,
const T& s2)
80 #define MAXMINPOW(retType, type1, type2) \
82 MAXMIN(retType, type1, type2) \
84 inline double pow(const type1 s, const type2 e) \
86 return ::pow(double(s), double(e)); \