mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
105 lines
3.0 KiB
C++
105 lines
3.0 KiB
C++
#include "cubic_model.h"
|
|
#include "../../shared/poincare_helpers.h"
|
|
#include <math.h>
|
|
#include <assert.h>
|
|
#include <poincare/code_point_layout.h>
|
|
#include <poincare/horizontal_layout.h>
|
|
#include <poincare/vertical_offset_layout.h>
|
|
#include <poincare/decimal.h>
|
|
#include <poincare/number.h>
|
|
#include <poincare/symbol.h>
|
|
#include <poincare/addition.h>
|
|
#include <poincare/multiplication.h>
|
|
#include <poincare/power.h>
|
|
|
|
using namespace Poincare;
|
|
using namespace Shared;
|
|
|
|
namespace Regression {
|
|
|
|
Layout CubicModel::layout() {
|
|
if (m_layout.isUninitialized()) {
|
|
m_layout = HorizontalLayout::Builder({
|
|
CodePointLayout::Builder('a', k_layoutFont),
|
|
CodePointLayout::Builder(UCodePointMiddleDot, k_layoutFont),
|
|
CodePointLayout::Builder('X', k_layoutFont),
|
|
VerticalOffsetLayout::Builder(
|
|
CodePointLayout::Builder('3', k_layoutFont),
|
|
VerticalOffsetLayoutNode::Position::Superscript
|
|
),
|
|
CodePointLayout::Builder('+', k_layoutFont),
|
|
CodePointLayout::Builder('b', k_layoutFont),
|
|
CodePointLayout::Builder(UCodePointMiddleDot, k_layoutFont),
|
|
CodePointLayout::Builder('X', k_layoutFont),
|
|
VerticalOffsetLayout::Builder(
|
|
CodePointLayout::Builder('2', k_layoutFont),
|
|
VerticalOffsetLayoutNode::Position::Superscript
|
|
),
|
|
CodePointLayout::Builder('+', k_layoutFont),
|
|
CodePointLayout::Builder('c', k_layoutFont),
|
|
CodePointLayout::Builder(UCodePointMiddleDot, k_layoutFont),
|
|
CodePointLayout::Builder('X', k_layoutFont),
|
|
CodePointLayout::Builder('+', k_layoutFont),
|
|
CodePointLayout::Builder('d', k_layoutFont),
|
|
});
|
|
}
|
|
return m_layout;
|
|
}
|
|
|
|
double CubicModel::evaluate(double * modelCoefficients, double x) const {
|
|
double a = modelCoefficients[0];
|
|
double b = modelCoefficients[1];
|
|
double c = modelCoefficients[2];
|
|
double d = modelCoefficients[3];
|
|
return a*x*x*x+b*x*x+c*x+d;
|
|
}
|
|
|
|
double CubicModel::partialDerivate(double * modelCoefficients, int derivateCoefficientIndex, double x) const {
|
|
switch (derivateCoefficientIndex) {
|
|
case 0:
|
|
// Derivate with respect to a: x^3
|
|
return x*x*x;
|
|
case 1:
|
|
// Derivate with respect to b: x^2
|
|
return x*x;
|
|
case 2:
|
|
// Derivate with respect to c: x
|
|
return x;
|
|
default:
|
|
// Derivate with respect to d: 1
|
|
assert(derivateCoefficientIndex == 3);
|
|
return 1.0;
|
|
};
|
|
}
|
|
|
|
Expression CubicModel::expression(double * modelCoefficients) {
|
|
double a = modelCoefficients[0];
|
|
double b = modelCoefficients[1];
|
|
double c = modelCoefficients[2];
|
|
double d = modelCoefficients[3];
|
|
// a*x^3+b*x^2+c*x+d
|
|
return Addition::Builder({
|
|
Multiplication::Builder({
|
|
Number::DecimalNumber(a),
|
|
Power::Builder(
|
|
Symbol::Builder('x'),
|
|
Decimal::Builder(3.0)
|
|
)
|
|
}),
|
|
Multiplication::Builder({
|
|
Number::DecimalNumber(b),
|
|
Power::Builder(
|
|
Symbol::Builder('x'),
|
|
Decimal::Builder(2.0)
|
|
)
|
|
}),
|
|
Multiplication::Builder({
|
|
Number::DecimalNumber(c),
|
|
Symbol::Builder('x')
|
|
}),
|
|
Number::DecimalNumber(d)
|
|
});
|
|
}
|
|
|
|
}
|