https://github.com/ElsevierSoftwareX/SOFTX_2019_219
Raw File
Tip revision: 99932db9e71d31a76425d68eef7d5859523ca0e4 authored by Konrad Werys on 04 November 2019, 09:33:32 UTC
doc: changes in the documentation
Tip revision: 99932db
OxFunctionsT1AdapterLmfitLeastSquares.h
/*!
 * \file OxFunctionsT1AdapterLmfitLeastSquares.h
 * \author Konrad Werys
 * \date 2019/08/15
 */

#ifndef Tomato_OXFUNCTIONST1ADAPTERLMFITLEASTSQUARES_H
#define Tomato_OXFUNCTIONST1ADAPTERLMFITLEASTSQUARES_H

#include "CmakeConfigForTomato.h"
#ifdef USE_LMFIT

#include "OxFunctionsT1.h"

namespace Ox {

    template<typename TYPE>
    class FunctionsT1AdapterLmfitLeastSquares {

    public:

        // least squares function problem formulation
        static inline
        void
        calcLSResiduals(const double *parameters, int nSamples, const void *data_void, double *residuals, int *info ){

            FunctionsT1<TYPE> *Functor = const_cast<FunctionsT1<TYPE> *>(reinterpret_cast<const FunctionsT1<TYPE> *>(data_void));

            Functor->calcLSResiduals(parameters, residuals);

        }

    };

} // namespace Ox


#endif //USE_LMFIT

#endif //Tomato_OXFUNCTIONST1ADAPTERLMFITLEASTSQUARES_H
back to top