Isis 3 Programmer Reference
PolynomialBivariate.h
1#ifndef PolynomialBivariate_h
2#define PolynomialBivariate_h
8/* SPDX-License-Identifier: CC0-1.0 */
9#include <vector>
10#include "BasisFunction.h"
11
12namespace Isis {
38 public:
39 PolynomialBivariate(int degree);
40
43
44 void Expand(const std::vector<double> &vars);
45
46 private:
48 };
49};
50
51#endif
52
Generic linear equation class.
Nth degree Polynomial with two variables.
void Expand(const std::vector< double > &vars)
This is the the overriding virtual function that provides the expansion of the two input variables in...
PolynomialBivariate(int degree)
Create a PolynomialBivariate object.
int p_degree
The order/degree of the polynomial.
~PolynomialBivariate()
Destroys the PolynomialBivariate object.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16