mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
71 lines
1.9 KiB
C++
71 lines
1.9 KiB
C++
#include "logarithmic_model.h"
|
|
#include "../store.h"
|
|
#include <math.h>
|
|
#include <assert.h>
|
|
|
|
using namespace Poincare;
|
|
|
|
namespace Regression {
|
|
|
|
Layout LogarithmicModel::layout() {
|
|
if (m_layout.isUninitialized()) {
|
|
const Layout layoutChildren[] = {
|
|
CharLayout('a', KDText::FontSize::Small),
|
|
CharLayout(Ion::Charset::MiddleDot, KDText::FontSize::Small),
|
|
CharLayout('l', KDText::FontSize::Small),
|
|
CharLayout('n', KDText::FontSize::Small),
|
|
CharLayout('(', KDText::FontSize::Small),
|
|
CharLayout('X', KDText::FontSize::Small),
|
|
CharLayout(')', KDText::FontSize::Small),
|
|
CharLayout('+', KDText::FontSize::Small),
|
|
CharLayout('b', KDText::FontSize::Small)
|
|
};
|
|
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;
|
|
}
|
|
|
|
}
|