#include "quartic_model.h" #include "../../shared/poincare_helpers.h" #include #include #include #include #include #include #include #include #include #include #include using namespace Poincare; using namespace Shared; namespace Regression { Layout QuarticModel::layout() { if (m_layout.isUninitialized()) { const Layout layoutChildren[] = { CharLayout('a', KDFont::SmallFont), CharLayout(Ion::Charset::MiddleDot, KDFont::SmallFont), CharLayout('X', KDFont::SmallFont), VerticalOffsetLayout( CharLayout('4', KDFont::SmallFont), VerticalOffsetLayoutNode::Type::Superscript ), CharLayout('+', KDFont::SmallFont), CharLayout('b', KDFont::SmallFont), CharLayout(Ion::Charset::MiddleDot, KDFont::SmallFont), CharLayout('X', KDFont::SmallFont), VerticalOffsetLayout( CharLayout('3', KDFont::SmallFont), VerticalOffsetLayoutNode::Type::Superscript ), CharLayout('+', KDFont::SmallFont), CharLayout('c', KDFont::SmallFont), CharLayout(Ion::Charset::MiddleDot, KDFont::SmallFont), CharLayout('X', KDFont::SmallFont), VerticalOffsetLayout( CharLayout('2', KDFont::SmallFont), VerticalOffsetLayoutNode::Type::Superscript ), CharLayout('+', KDFont::SmallFont), CharLayout('d', KDFont::SmallFont), CharLayout(Ion::Charset::MiddleDot, KDFont::SmallFont), CharLayout('X', KDFont::SmallFont), CharLayout('+', KDFont::SmallFont), CharLayout('e', KDFont::SmallFont), }; m_layout = HorizontalLayout(layoutChildren, 20); } return m_layout; } Expression QuarticModel::simplifiedExpression(double * modelCoefficients, Poincare::Context * context) { double a = modelCoefficients[0]; double b = modelCoefficients[1]; double c = modelCoefficients[2]; double d = modelCoefficients[3]; double e = modelCoefficients[4]; Expression addChildren[] = { // a*x^4 Multiplication( Number::DecimalNumber(a), Power( Symbol('x'), Decimal(4.0))), // b*x^3 Multiplication( Number::DecimalNumber(b), Power( Symbol('x'), Decimal(3.0))), // c*x^2 Multiplication( Number::DecimalNumber(c), Power( Symbol('x'), Decimal(2.0))), // d*x Multiplication( Number::DecimalNumber(d), Symbol('x')), // e Number::DecimalNumber(e) }; Expression result = Addition(addChildren, 5); PoincareHelpers::Simplify(&result, *context); return result; } double QuarticModel::evaluate(double * modelCoefficients, double x) const { double a = modelCoefficients[0]; double b = modelCoefficients[1]; double c = modelCoefficients[2]; double d = modelCoefficients[3]; double e = modelCoefficients[4]; return a*x*x*x*x+b*x*x*x+c*x*x+d*x+e; } double QuarticModel::partialDerivate(double * modelCoefficients, int derivateCoefficientIndex, double x) const { if (derivateCoefficientIndex == 0) { // Derivate: x^4 return x*x*x*x; } if (derivateCoefficientIndex == 1) { // Derivate: x^3 return x*x*x; } if (derivateCoefficientIndex == 2) { // Derivate: x^2 return x*x; } if (derivateCoefficientIndex == 3) { // Derivate: x return x; } if (derivateCoefficientIndex == 4) { // Derivate: 1 return 1; } assert(false); return 0.0; } }