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
17namespace mx
18{
19namespace math
20{
21namespace func
22{
23
24/// The sign function.
25/**
26 * \ingroup functions
27 */
28template <typename T>
29T 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
41template <>
42float sign<float>( float x );
43
44template <>
45double sign<double>( double x );
46
47template <>
48long double sign<long double>( long double x );
49
50} // namespace func
51} // namespace math
52} // namespace mx
53
54#endif // mx_sign_hpp
T sign(T x)
The sign function.
Definition sign.hpp:29
The mxlib c++ namespace.
Definition mxError.hpp:106