mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
fitWeibull.hpp
Go to the documentation of this file.
1/** \file fitWeibull.hpp
2 * \author Jared R. Males
3 * \brief Tools for fitting the Weibull distribution to data.
4 * \ingroup fitting_files
5 *
6 */
7
8//***********************************************************************//
9// Copyright 2023 Jared R. Males (jaredmales@gmail.com)
10//
11// This file is part of mxlib.
12//
13// mxlib is free software: you can redistribute it and/or modify
14// it under the terms of the GNU General Public License as published by
15// the Free Software Foundation, either version 3 of the License, or
16// (at your option) any later version.
17//
18// mxlib is distributed in the hope that it will be useful,
19// but WITHOUT ANY WARRANTY; without even the implied warranty of
20// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21// GNU General Public License for more details.
22//
23// You should have received a copy of the GNU General Public License
24// along with mxlib. If not, see <http://www.gnu.org/licenses/>.
25//***********************************************************************//
26
27#ifndef fitWeibull_hpp
28#define fitWeibull_hpp
29
30#include "levmarInterface.hpp"
31#include "../func/weibull.hpp"
32
33namespace mx
34{
35namespace math
36{
37namespace fit
38{
39
40template <typename realT>
41struct array2FitWeibull;
42
43/** \defgroup weibull_peak_fit Weibull Distribution
44 * \brief Fitting the Weibull Distribution to data.
45 *
46 * The Weibull Distribution is fit to data.
47 *
48 * \ingroup peak_fit
49 */
50
51/// Class to manage fitting the Weibull Distribution to data via the \ref levmarInterface
52/** In addition to the requirements on fitterT specified by \ref levmarInterface
53 * this class also requires this definition in fitterT
54 * \code
55 * static const int nparams = 3;
56 * \endcode
57 * where the number 3 is replaced by the number of parameters that fitterT expects to fit.
58 *
59 * \tparam fitterT a type meeting the above requirements.
60 *
61 * \ingroup weibull_peak_fit
62 *
63 */
64template <typename fitterT>
65class fitWeibull : public levmarInterface<fitterT>
66{
67
68 public:
69 typedef typename fitterT::realT realT;
70
71 static const int nparams = fitterT::nparams;
72
74
75 void initialize()
76 {
77 this->allocate_params( nparams );
78 this->adata = &arr;
79 }
80
82 {
83 initialize();
84 }
85
87 {
88 }
89
90 /// Set the initial guess when platescale and central obscuration are fixed.
91 void setGuess( realT x0, ///< [in] the location parameter
92 realT k, ///< [in] the shape parameter
93 realT lambda ///< [in] the scale parameter
94 )
95 {
96 static_assert( nparams == 3, "fitWeibull: Wrong setGuess called for no location parameter." );
97
98 this->p[2] = x0;
99 this->p[0] = k;
100 this->p[1] = lambda;
101 }
102
103 /// Set the initial guess when platescale and central obscuration are fixed.
104 void setGuess( realT k, ///< [in] the shape parameter
105 realT lambda ///< [in] the scale parameter
106 )
107 {
108 static_assert( nparams == 2, "fitWeibull: Wrong setGuess called for location parameter." );
109
110 this->p[0] = k;
111 this->p[1] = lambda;
112 }
113
114 void setArray( realT *data, int n )
115 {
116 arr.data = data;
117 arr.n = n;
118
119 this->n = n;
120 }
121
122 void x0( realT nx0 )
123 {
124 arr.x0 = nx0;
125 if( nparams == 3 )
126 {
127 this->p[2] = nx0;
128 }
129 }
130
131 void k( realT nk )
132 {
133 arr.k = nk;
134 this->p[0] = nk;
135 }
136
137 void lambda( realT nl )
138 {
139 arr.lambda = nl;
140 this->p[1] = nl;
141 }
142
143 int fit()
144 {
146 }
147
148 realT x0()
149 {
150 if( nparams == 3 )
151 {
152 return this->p[2];
153 }
154 else
155 {
156 return 0;
157 }
158 }
159
160 realT k()
161 {
162 return this->p[0];
163 }
164
165 realT lambda()
166 {
167 return this->p[1];
168 }
169};
170
171/// Wrapper for a native array to pass to \ref levmarInterface, with Weibull details.
172/** \ingroup weibull_peak_fit
173 */
174template <typename realT>
176{
177 realT *data{ nullptr }; ///< Pointer to the array
178 size_t n{ 0 }; ///< dimension of the array
179
180 realT x0{ 0 }; ///< the location parameter.
181 realT k{ 0 }; ///< the shape parameter
182 realT lambda{ 0 }; ///< the scale parameter
183};
184
185///\ref levmarInterface fitter structure for the shifted Weibull Distribution
186/**
187 *
188 * \ingroup weibull_peak_fit
189 *
190 */
191template <typename _realT>
193{
194 typedef _realT realT;
195
196 static const int nparams = 3;
197
198 static void func( realT *p, realT *hx, int m, int n, void *adata )
199 {
201
202 for( int i = 0; i < arr->n; i++ )
203 {
204 hx[i] = func::weibull<realT>( i, p[2], p[0], p[1] ) - arr->data[i];
205 }
206 }
207};
208
209///\ref levmarInterface fitter structure for the shifted Weibull Distribution
210/**
211 *
212 * \ingroup weibull_peak_fit
213 *
214 */
215template <typename _realT>
217{
218 typedef _realT realT;
219
220 static const int nparams = 2;
221
222 static void func( realT *p, realT *hx, int m, int n, void *adata )
223 {
225
226 for( int i = 0; i < arr->n; i++ )
227 {
228 hx[i] = func::weibull<realT>( i, 0.0, p[0], p[1] ) - arr->data[i];
229 }
230 }
231};
232
233} // namespace fit
234} // namespace math
235} // namespace mx
236
237#endif // fitWeibull_hpp
Class to manage fitting the Weibull Distribution to data via the levmarInterface.
void setGuess(realT k, realT lambda)
Set the initial guess when platescale and central obscuration are fixed.
void setGuess(realT x0, realT k, realT lambda)
Set the initial guess when platescale and central obscuration are fixed.
A templatized interface to the levmar package.
void allocate_params()
Allocate parameters array based on previous call to nParams.
realT * p
Parameter array. On input is the initial estimates. On output has the estimated solution.
int n
I: measurement vector dimension.
void * adata
Pointer to possibly additional data, passed uninterpreted to func & jacf.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
A c++ interface to the templatized levmar minimization routines..
The mxlib c++ namespace.
Definition mxError.hpp:106
Wrapper for a native array to pass to levmarInterface, with Weibull details.
realT x0
the location parameter.
size_t n
dimension of the array
realT k
the shape parameter
realT lambda
the scale parameter
realT * data
Pointer to the array.
levmarInterface fitter structure for the shifted Weibull Distribution
levmarInterface fitter structure for the shifted Weibull Distribution