mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
logistic.hpp
Go to the documentation of this file.
1/** \file logistic.hpp
2 * \brief The logistic function
3 *
4 * \author Jared R. Males (jaredmales@gmail.com)
5 *
6 * \ingroup gen_math_files
7 *
8 */
9
10//***********************************************************************//
11// Copyright 2015, 2016, 2017 Jared R. Males (jaredmales@gmail.com)
12//
13// This file is part of mxlib.
14//
15// mxlib is free software: you can redistribute it and/or modify
16// it under the terms of the GNU General Public License as published by
17// the Free Software Foundation, either version 3 of the License, or
18// (at your option) any later version.
19//
20// mxlib is distributed in the hope that it will be useful,
21// but WITHOUT ANY WARRANTY; without even the implied warranty of
22// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23// GNU General Public License for more details.
24//
25// You should have received a copy of the GNU General Public License
26// along with mxlib. If not, see <http://www.gnu.org/licenses/>.
27//***********************************************************************//
28
29#ifndef __logistic_hpp__
30#define __logistic_hpp__
31
32namespace mx
33{
34
35namespace math
36{
37
38namespace func
39{
40
41/// Return the logistic function parameter for a specified rise time
42/** The logistic function is
43 * \f[
44 * f(t) = \frac{1}{1 + e^{-a(t-t_0)}}
45 * \f]
46 * The parameter \f$ a \f$ controls how fast the function rises. Here it is specified by the
47 * value \f$ f(t_{1/2}) = x\f$, where \f$ 0 < x < 1 \f$.
48 *
49 *
50 * \returns the value of a
51 *
52 * \tparam floatT is the floating point type of the arguments and the returned value.
53 *
54 * \ingroup gen_math_logistic
55 */
56template <typename floatT>
57floatT logistic_param( floatT x, ///< [in] the value at which the rise time is specified.
58 floatT thalf ///< [in] half the rise time, or the time after 0 when f(t) = x.
59)
60{
61 return -log( 1.0 / x - 1 ) / thalf;
62}
63
64/// Return the value of the logistic function
65/** The logistic function is
66 * \f[
67 * f(t) = \frac{1}{1 + e^{-a(t-t_0)}}
68 * \f]
69 *
70 * \param t [input] the argument.
71 * \param t0 [input] [optional] the center of the curve, defaults to 0.
72 * \param a [input] [optional] the exponent parameter, defaults to 1.
73 *
74 * \returns the value of the logistic function at t
75 *
76 * \tparam floatT is the floating point type of the arguments and the returned value.
77 *
78 * \ingroup gen_math_logistic
79 */
80template <typename floatT>
81floatT logistic( floatT t, floatT t0 = 0, floatT a = 1 )
82{
83 return 1.0 / ( 1.0 + exp( -a * ( t - t0 ) ) );
84}
85
86} // namespace func
87} // namespace math
88} // namespace mx
89
90#endif //__logistic_hpp__
floatT logistic(floatT t, floatT t0=0, floatT a=1)
Return the value of the logistic function.
Definition logistic.hpp:81
floatT logistic_param(floatT x, floatT thalf)
Return the logistic function parameter for a specified rise time.
Definition logistic.hpp:57
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
The mxlib c++ namespace.
Definition mxError.hpp:106