Files
Upsilon/apps/regression/model/logarithmic_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

73 lines
1.9 KiB
C++

#include "logarithmic_model.h"
#include "../store.h"
#include <math.h>
#include <assert.h>
#include <poincare/char_layout.h>
#include <poincare/horizontal_layout.h>
using namespace Poincare;
namespace Regression {
Layout LogarithmicModel::layout() {
if (m_layout.isUninitialized()) {
const Layout layoutChildren[] = {
CharLayout('a', KDFont::SmallFont),
CharLayout(Ion::Charset::MiddleDot, KDFont::SmallFont),
CharLayout('l', KDFont::SmallFont),
CharLayout('n', KDFont::SmallFont),
CharLayout('(', KDFont::SmallFont),
CharLayout('X', KDFont::SmallFont),
CharLayout(')', KDFont::SmallFont),
CharLayout('+', KDFont::SmallFont),
CharLayout('b', KDFont::SmallFont)
};
m_layout = HorizontalLayout(layoutChildren, 9);
}
return m_layout;
}
double LogarithmicModel::evaluate(double * modelCoefficients, double x) const {
double a = modelCoefficients[0];
double b = modelCoefficients[1];
return a*log(x)+b;
}
double LogarithmicModel::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 exp((y-b)/a);
}
double LogarithmicModel::partialDerivate(double * modelCoefficients, int derivateCoefficientIndex, double x) const {
if (derivateCoefficientIndex == 0) {
// Derivate: ln(x)
assert(x >0);
return log(x);
}
if (derivateCoefficientIndex == 1) {
// Derivate: 1
return 1;
}
assert(false);
return 0.0;
}
bool LogarithmicModel::dataSuitableForFit(Store * store, int series) const {
if (!Model::dataSuitableForFit(store, series)) {
return false;
}
int numberOfPairs = store->numberOfPairsOfSeries(series);
for (int j = 0; j < numberOfPairs; j++) {
if (store->get(series, 0, j) <= 0) {
return false;
}
}
return true;
}
}