mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [
git repo
]
Loading...
Searching...
No Matches
sign.hpp
Go to the documentation of this file.
1
/** \file sign.hpp
2
* \brief Declares and defines the sign function.
3
* \ingroup gen_math_files
4
* \author Jared R. Males (jaredmales@gmail.com)
5
*
6
*/
7
8
#ifndef mx_sign_hpp
9
#define mx_sign_hpp
10
11
#include <type_traits>
12
13
#ifdef MX_INCLUDE_BOOST
14
#include <boost/math/special_functions/sign.hpp>
15
#endif
16
17
namespace
mx
18
{
19
namespace
math
20
{
21
namespace
func
22
{
23
24
/// The sign function.
25
/**
26
* \ingroup functions
27
*/
28
template
<
typename
T>
29
T
sign
( T x
/**< [in] the argument */
)
30
{
31
#ifdef MX_INCLUDE_BOOST
32
return
boost::math::sign<T>( x );
33
#else
34
static_assert
(
35
std::is_fundamental<T>::value || !std::is_fundamental<T>::value,
36
"sign<T> not specialized for type T, and MX_INCLUDE_BOOST is not defined, so I can't just use boost."
);
37
return
0;
38
#endif
39
}
40
41
template
<>
42
float
sign<float>(
float
x );
43
44
template
<>
45
double
sign<double>(
double
x );
46
47
template
<>
48
long
double
sign<long double>(
long
double
x );
49
50
}
// namespace func
51
}
// namespace math
52
}
// namespace mx
53
54
#endif
// mx_sign_hpp
mx::math::func::sign
T sign(T x)
The sign function.
Definition
sign.hpp:29
mx
The mxlib c++ namespace.
Definition
mxError.hpp:106
math
func
sign.hpp
Generated on Wed Mar 5 2025 10:09:16 for mxlib by
1.9.8