mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-19 13:50:28 +01:00
27 lines
582 B
C++
27 lines
582 B
C++
#include "logarithmic_model.h"
|
|
#include <math.h>
|
|
#include <assert.h>
|
|
|
|
namespace Regression {
|
|
|
|
double LogarithmicModel::evaluate(double * modelCoefficients, double x) const {
|
|
double a = modelCoefficients[0];
|
|
double b = modelCoefficients[1];
|
|
return a*log(x)+b;
|
|
}
|
|
|
|
double LogarithmicModel::partialDerivate(double * modelCoefficients, int derivateCoefficientIndex, double x) const {
|
|
if (derivateCoefficientIndex == 0) {
|
|
// Derivate: ln(x)
|
|
return log(x);
|
|
}
|
|
if (derivateCoefficientIndex == 1) {
|
|
// Derivate: 1
|
|
return 1;
|
|
}
|
|
assert(false);
|
|
return 0.0;
|
|
}
|
|
|
|
}
|