mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
logInterpolator.hpp
Go to the documentation of this file.
1/** \file logInterpolator.hpp
2 * \brief Interpolation in log space.
3 *
4 * \author Jared R. Males (jaredmales@gmail.com)
5 *
6 * \ingroup gen_math_files
7 *
8 */
9
10//***********************************************************************//
11// Copyright 2022 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 mx_math_logInterpolator_hpp
30#define mx_math_logInterpolator_hpp
31
32#include "../mxException.hpp"
33#include "gslInterpolator.hpp"
34
35namespace mx
36{
37namespace math
38{
39
40/// Interpolate a function in log space
41/** Given a discrete function, conduct linear interpolation in log space.
42 * The input vectors are converted to their log10 values. Linear interpolation
43 * using gslInterpolator is conducted on the log10 of the input value. The output
44 * is converted back. So the result is
45 * \code
46 * y = pow(10, interp(log10(x))).
47 * \endcode
48 *
49 * \ingroup interpolation
50 */
51template <typename interpT>
53{
54
55 public:
56 typedef typename interpT::realT realT;
57
58 protected:
59 gslInterpolator<interpT> m_interp; ///< The interpolator
60
61 std::vector<realT> m_logx; ///< Internal storage of the log10 values of the x values
62 std::vector<realT> m_logy; ///< Internal storage of the lgo10 values of the y values
63
64 public:
65 /// Default constructor
67 {
68 }
69
70 /// Convert the inputs to their log10 values, and construct the interpolator.
71 /**
72 * \throws mxException if vectors are not the same size.
73 */
74 logInterpolator( const std::vector<realT> &x, /// [in] the input x-axis
75 const std::vector<realT> &y /// [in] the input y-axis
76 )
77 {
78 setup( x, y );
79 }
80
81 /// Convert the inputs to their log10 values, and construct the interpolator.
82 /**
83 * \throws mx::err::sizeerr if vectors are not the same size.
84 * \throws mx::err::invalidarg if any of the values are <= 0
85 */
86 void setup( const std::vector<realT> &x, /// [in] the input x-axis
87 const std::vector<realT> &y /// [in] the input y-axis
88 )
89 {
90 if( x.size() != y.size() )
91 {
92 mxThrowException( err::sizeerr, "logInterpolator", "vectors must have same size" );
93 }
94
95 m_logx.resize( x.size() );
96 m_logy.resize( y.size() );
97
98 for( size_t n = 0; n < x.size(); ++n )
99 {
100 if( x[n] <= 0 )
101 {
102 mxThrowException( err::invalidarg, "logInterpolator", "x values must > 0" );
103 }
104
105 if( y[n] <= 0 )
106 {
107 mxThrowException( err::invalidarg, "logInterpolator", "y values must > 0" );
108 }
109
110 m_logx[n] = log10( x[n] );
111 m_logy[n] = log10( y[n] );
112 }
113
114 m_interp.setup( m_logx, m_logy );
115 }
116
117 /// Calculate the interpolated value at the input \par x.
118 /**
119 * \returns the interpolated value
120 */
121 realT operator()( const realT &x )
122 {
123 return pow( static_cast<realT>( 10 ), m_interp( log10( x ) ) );
124 }
125};
126
127} // namespace math
128} // namespace mx
129
130#endif // mx_math_logInterpolator_hpp
mxException for invalid arguments
mxException for a size error
Class to manage interpolation using the GSL interpolation library.
Interpolate a function in log space.
logInterpolator()
Default constructor.
std::vector< realT > m_logx
Internal storage of the log10 values of the x values.
gslInterpolator< interpT > m_interp
The interpolator.
logInterpolator(const std::vector< realT > &x, const std::vector< realT > &y)
Convert the inputs to their log10 values, and construct the interpolator.
realT operator()(const realT &x)
Calculate the interpolated value at the input.
void setup(const std::vector< realT > &x, const std::vector< realT > &y)
Convert the inputs to their log10 values, and construct the interpolator.
std::vector< realT > m_logy
Internal storage of the lgo10 values of the y values.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
Class for managing 1-D interpolation using the GNU Scientific Library.
The mxlib c++ namespace.
Definition mxError.hpp:106