Official websites use .gov
A .gov website belongs to an official government organization in the United States.

Secure .gov websites use HTTPS
A lock ( ) or https:// means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.

Isis 3 Programmer Reference
PolynomialBivariate.h
1#ifndef PolynomialBivariate_h
2#define PolynomialBivariate_h
7
8/* SPDX-License-Identifier: CC0-1.0 */
9#include <vector>
10#include "BasisFunction.h"
11
12namespace Isis {
36
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.
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