Isis Developer Reference
PolynomialUnivariate.h
Go to the documentation of this file.
1#ifndef PolynomialUnivariate_h
2#define PolynomialUnivariate_h
8/* SPDX-License-Identifier: CC0-1.0 */
9#include <vector>
11
12namespace Isis {
38 public:
39 PolynomialUnivariate(int degree);
40 PolynomialUnivariate(int degree, std::vector<double> coeffs);
41
44
45 void Expand(const std::vector<double> &vars);
46
47 double DerivativeVar(const double value);
48 double DerivativeCoef(const double value, const int coefIndex);
49
50 private:
51 int p_degree;
52 };
53};
54
55#endif
56
Time based linear equation class.
Definition Basis1VariableFunction.h:50
Nth degree Polynomial with one variable.
Definition PolynomialUnivariate.h:37
~PolynomialUnivariate()
Destroys the PolynomialUnivariate object.
Definition PolynomialUnivariate.h:43
void Expand(const std::vector< double > &vars)
This is the the overriding virtual function that provides the expansion of the two input variables in...
Definition PolynomialUnivariate.cpp:48
double DerivativeCoef(const double value, const int coefIndex)
Evaluate the derivative of the polynomial defined by the given coefficients with respect to the coeff...
Definition PolynomialUnivariate.cpp:90
double DerivativeVar(const double value)
This will take the Derivative with respect to the variable and evaluate at given value.
Definition PolynomialUnivariate.cpp:67
PolynomialUnivariate(int degree)
Create a PolynomialUnivariate object.
Definition PolynomialUnivariate.cpp:21
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16