Files
Upsilon/apps/regression/model/logistic_model.cpp
Lionel Debroux 1a8c6b6ae9 [poincare, escher, ion, apps] Split the huge umbrella header poincare.h, to reduce build time.
This should be a NFC, but surprisingly, it also reduces size... so what does it change ?
2018-10-23 11:49:09 +02:00

83 lines
2.5 KiB
C++

#include "logistic_model.h"
#include <math.h>
#include <assert.h>
#include <poincare/char_layout.h>
#include <poincare/fraction_layout.h>
#include <poincare/horizontal_layout.h>
#include <poincare/vertical_offset_layout.h>
using namespace Poincare;
namespace Regression {
Layout LogisticModel::layout() {
if (m_layout.isUninitialized()) {
const Layout exponentLayoutChildren[] = {
CharLayout('-', KDFont::SmallFont),
CharLayout('b', KDFont::SmallFont),
CharLayout(Ion::Charset::MiddleDot, KDFont::SmallFont),
CharLayout('X', KDFont::SmallFont)
};
const Layout layoutChildren[] = {
CharLayout('1', KDFont::SmallFont),
CharLayout('+', KDFont::SmallFont),
CharLayout('a', KDFont::SmallFont),
CharLayout(Ion::Charset::MiddleDot, KDFont::SmallFont),
CharLayout('e', KDFont::SmallFont),
VerticalOffsetLayout(
HorizontalLayout(exponentLayoutChildren, 4),
VerticalOffsetLayoutNode::Type::Superscript
)
};
m_layout = FractionLayout(
CharLayout('c', KDFont::SmallFont),
HorizontalLayout(layoutChildren, 6)
);
}
return m_layout;
}
double LogisticModel::evaluate(double * modelCoefficients, double x) const {
double a = modelCoefficients[0];
double b = modelCoefficients[1];
double c = modelCoefficients[2];
return c/(1.0+a*exp(-b*x));
}
double LogisticModel::levelSet(double * modelCoefficients, double xMin, double step, double xMax, double y, Poincare::Context * context) {
double a = modelCoefficients[0];
double b = modelCoefficients[1];
double c = modelCoefficients[2];
if (a == 0 || b == 0 || c == 0 || y == 0) {
return NAN;
}
double lnArgument = (c/y - 1)/a;
if (lnArgument <= 0) {
return NAN;
}
return -log(lnArgument)/b;
}
double LogisticModel::partialDerivate(double * modelCoefficients, int derivateCoefficientIndex, double x) const {
double a = modelCoefficients[0];
double b = modelCoefficients[1];
double c = modelCoefficients[2];
double denominator = 1.0+a*exp(-b*x);
if (derivateCoefficientIndex == 0) {
// Derivate: exp(-b*x)*(-1 * c/(1.0+a*exp(-b*x))^2)
return -exp(-b*x) * c/(denominator * denominator);
}
if (derivateCoefficientIndex == 1) {
// Derivate: (-x)*a*exp(-b*x)*(-1/(1.0+a*exp(-b*x))^2)
return x*a*exp(-b*x)*c/(denominator * denominator);
}
if (derivateCoefficientIndex == 2) {
// Derivate: (-x)*a*exp(-b*x)*(-1/(1.0+a*exp(-b*x))^2)
return 1.0/denominator;
}
assert(false);
return 0.0;
}
}