#include "linear_model.h" #include "../store.h" #include #include using namespace Poincare; namespace Regression { LayoutReference LinearModel::layout() { static LayoutReference layout; if (layout.isUninitialized()) { const LayoutReference layoutChildren[] = { CharLayoutRef('a', KDText::FontSize::Small), CharLayoutRef(Ion::Charset::MiddleDot, KDText::FontSize::Small), CharLayoutRef('X', KDText::FontSize::Small), CharLayoutRef('+', KDText::FontSize::Small), CharLayoutRef('b', KDText::FontSize::Small), }; layout = HorizontalLayoutRef(layoutChildren, 5); } return layout; } double LinearModel::evaluate(double * modelCoefficients, double x) const { double a = modelCoefficients[0]; double b = modelCoefficients[1]; return a*x+b; } double LinearModel::levelSet(double * modelCoefficients, double xMin, double step, double xMax, double y, Poincare::Context * context) { double a = modelCoefficients[0]; double b = modelCoefficients[1]; if (a == 0) { return NAN; } return (y-b)/a; } void LinearModel::fit(Store * store, int series, double * modelCoefficients, Poincare::Context * context) { modelCoefficients[0] = store->slope(series); modelCoefficients[1] = store->yIntercept(series); } double LinearModel::partialDerivate(double * modelCoefficients, int derivateCoefficientIndex, double x) const { if (derivateCoefficientIndex == 0) { // Derivate: x return x; } if (derivateCoefficientIndex == 1) { // Derivate: 1; return 1; } assert(false); return 0.0; } }