mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
77 lines
2.2 KiB
C++
77 lines
2.2 KiB
C++
#include "power_model.h"
|
|
#include "../store.h"
|
|
#include <math.h>
|
|
#include <assert.h>
|
|
#include "../../poincare/include/poincare_layouts.h"
|
|
|
|
using namespace Poincare;
|
|
|
|
namespace Regression {
|
|
|
|
ExpressionLayout * PowerModel::layout() {
|
|
static ExpressionLayout * layout = nullptr;
|
|
if (layout == nullptr) {
|
|
const ExpressionLayout * layoutChildren[] = {
|
|
new CharLayout('a', KDText::FontSize::Small),
|
|
new CharLayout(Ion::Charset::MiddleDot, KDText::FontSize::Small),
|
|
new CharLayout('X', KDText::FontSize::Small),
|
|
new VerticalOffsetLayout(
|
|
new CharLayout('b', KDText::FontSize::Small),
|
|
VerticalOffsetLayout::Type::Superscript,
|
|
false),
|
|
};
|
|
layout = new HorizontalLayout(layoutChildren, 4, false);
|
|
}
|
|
return layout;
|
|
}
|
|
|
|
double PowerModel::evaluate(double * modelCoefficients, double x) const {
|
|
double a = modelCoefficients[0];
|
|
double b = modelCoefficients[1];
|
|
return a*pow(x,b);
|
|
}
|
|
|
|
double PowerModel::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 || b == 0|| y/a <= 0) {
|
|
return NAN;
|
|
}
|
|
return exp(log(y/a)/b);
|
|
}
|
|
|
|
double PowerModel::partialDerivate(double * modelCoefficients, int derivateCoefficientIndex, double x) const {
|
|
double a = modelCoefficients[0];
|
|
double b = modelCoefficients[1];
|
|
if (derivateCoefficientIndex == 0) {
|
|
// Derivate: pow(x,b)
|
|
return pow(x,b);
|
|
}
|
|
if (derivateCoefficientIndex == 1) {
|
|
assert(x >= 0);
|
|
/* We assume all xi are positive.
|
|
* For x = 0, a*pow(x,b) = 0, the partial derivate along b is 0
|
|
* For x > 0, a*pow(x,b) = a*exp(b*ln(x)), the partial derivate along b is
|
|
* ln(x)*a*pow(x,b) */
|
|
return x == 0 ? 0 : log(x)*a*pow(x, b);
|
|
}
|
|
assert(false);
|
|
return 0.0;
|
|
}
|
|
|
|
bool PowerModel::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;
|
|
}
|
|
|
|
|
|
}
|