mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
81 lines
2.5 KiB
C++
81 lines
2.5 KiB
C++
#include "logistic_model.h"
|
|
#include <math.h>
|
|
#include <assert.h>
|
|
#include "../../poincare/include/poincare_layouts.h"
|
|
|
|
using namespace Poincare;
|
|
|
|
namespace Regression {
|
|
|
|
ExpressionLayout * LogisticModel::layout() {
|
|
static ExpressionLayout * layout = nullptr;
|
|
if (layout == nullptr) {
|
|
const ExpressionLayout * exponentLayoutChildren[] = {
|
|
CharLayoutRef('-', KDText::FontSize::Small),
|
|
CharLayoutRef('b', KDText::FontSize::Small),
|
|
CharLayoutRef(Ion::Charset::MiddleDot, KDText::FontSize::Small),
|
|
CharLayoutRef('X', KDText::FontSize::Small)
|
|
};
|
|
const ExpressionLayout * layoutChildren[] = {
|
|
CharLayoutRef('1', KDText::FontSize::Small),
|
|
CharLayoutRef('+', KDText::FontSize::Small),
|
|
CharLayoutRef('a', KDText::FontSize::Small),
|
|
CharLayoutRef(Ion::Charset::MiddleDot, KDText::FontSize::Small),
|
|
CharLayoutRef('e', KDText::FontSize::Small),
|
|
VerticalOffsetLayoutRef(
|
|
HorizontalLayoutRef(exponentLayoutChildren, 4),
|
|
VerticalOffsetLayoutNode::Type::Superscript
|
|
)
|
|
};
|
|
layout = FractionLayoutRef(
|
|
CharLayoutRef('c', KDText::FontSize::Small),
|
|
HorizontalLayoutRef(layoutChildren, 6),
|
|
);
|
|
}
|
|
return 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;
|
|
}
|
|
|
|
}
|