![]() |
Isis 3 Programmer Reference
|
Generic linear equation class. More...
#include <BasisFunction.h>
Public Member Functions | |
BasisFunction (const QString &name, int numVars, int numCoefs) | |
Creates a BasisFunction object. More... | |
virtual | ~BasisFunction () |
Destroys the BasisFunction object. More... | |
void | SetCoefficients (const std::vector< double > &coefs) |
Set the coefficients for the equation. More... | |
double | Evaluate (const std::vector< double > &vars) |
Compute the equation using the input variables. More... | |
double | Evaluate (const double &var) |
Compute the equation using the input variable. More... | |
virtual void | Expand (const std::vector< double > &vars) |
This is the function you should replace depending on your needs. More... | |
int | Coefficients () const |
Returns the number of coefficients for the equation. More... | |
int | Variables () const |
Returns the number of variables in the equation. More... | |
QString | Name () const |
Returns the name of the equation. More... | |
double | Term (int c) const |
Returns the cth term. More... | |
double | Coefficient (int i) const |
Returns the ith coefficient. More... | |
Protected Attributes | |
QString | p_name |
The name of the equation. Call it by using Name() More... | |
int | p_numVars |
The number of variables in the equation. Call it by using Variables() More... | |
int | p_numCoefs |
The number of coefficients in the equation. More... | |
std::vector< double > | p_coefs |
A vector of the coefficients in the equation. More... | |
std::vector< double > | p_terms |
A vector of the terms in the equation. More... | |
Generic linear equation class.
This is a base class for generating "generic" equations for the Isis least squares fitting algorithm (IsisLSQ). It allows the programmer to set up equations in the form of:
where C1-CN are coefficients and T1-TN are terms. Note that terms can be comprised of multiple variables and/or functions. For example,
By deriving different functions off of this base class this allows the least squares class to be generalized.
Definition at line 48 of file BasisFunction.h.
Isis::BasisFunction::BasisFunction | ( | const QString & | name, |
int | numVars, | ||
int | numCoefs | ||
) |
Creates a BasisFunction object.
name | Name of the BasisFunction. For example, "affine". |
numVars | Number of variables in the equation. For example:
has two variables: y and z. |
numCoefs | Number of coefficients in the equation. For example:
has three coefficients: C1, C2 & C3. |
Definition at line 29 of file BasisFunction.cpp.
References p_name, p_numCoefs, and p_numVars.
|
inlinevirtual |
Destroys the BasisFunction object.
Definition at line 52 of file BasisFunction.h.
|
inline |
Returns the ith coefficient.
i | The index for the desired coefficient. |
Definition at line 107 of file BasisFunction.h.
References p_coefs.
Referenced by Isis::PolynomialUnivariate::DerivativeVar(), Isis::SpicePosition::LoadHermiteCache(), Isis::SurfaceModel::MinMax(), Isis::SpicePosition::SetPolynomial(), Isis::SpiceRotation::SetPolynomial(), and Isis::Affine::Solve().
|
inline |
Returns the number of coefficients for the equation.
Definition at line 64 of file BasisFunction.h.
References p_numCoefs.
Referenced by Isis::PolynomialUnivariate::DerivativeCoef(), Isis::PolynomialUnivariate::DerivativeVar(), Isis::SpicePosition::SetPolynomial(), Isis::SpiceRotation::SetPolynomial(), Isis::LeastSquares::SolveQRD(), and Isis::LeastSquares::SolveSVD().
double Isis::BasisFunction::Evaluate | ( | const double & | var | ) |
Compute the equation using the input variable.
var | A single double value to use for the equation. |
Definition at line 101 of file BasisFunction.cpp.
References Evaluate().
double Isis::BasisFunction::Evaluate | ( | const std::vector< double > & | vars | ) |
Compute the equation using the input variables.
vars | A vector of double values to use for the equation. After setting the coefficients, this can be invoked many times to compute output values given input values. |
Definition at line 64 of file BasisFunction.cpp.
References Expand(), p_coefs, p_numCoefs, p_numVars, p_terms, Isis::IException::Programmer, and Isis::toString().
Referenced by Evaluate(), Isis::LeastSquares::Evaluate(), Isis::SpiceRotation::EvaluatePolyFunction(), Isis::SpicePosition::LoadHermiteCache(), Isis::SpicePosition::SetEphemerisTimePolyFunction(), Isis::SpiceRotation::setEphemerisTimePolyFunction(), Isis::LeastSquares::SolveQRD(), and Isis::LeastSquares::SolveSVD().
|
virtual |
This is the function you should replace depending on your needs.
It will expand the variables into the terms of the equation. For example,
must be expanded into the p_terms vector as (1.0, y, z, y*z). Note that the term expansion is not limited, you can use cos, sin, sqrt, abs, etc. This virtual method is automatically invoked by the Evaluate method. We provide a default expansion of p_terms = vars, just a linear combination of the variables.
vars | A vector of double values to use for the expansion. |
Reimplemented in Isis::PolynomialUnivariate, Isis::PolynomialBivariate, and Isis::NthOrderPolynomial.
Definition at line 123 of file BasisFunction.cpp.
References p_terms.
Referenced by Evaluate(), Isis::LeastSquares::FillSparseA(), Isis::LeastSquares::SolveQRD(), and Isis::LeastSquares::SolveSVD().
|
inline |
Returns the name of the equation.
Definition at line 80 of file BasisFunction.h.
References p_name.
Referenced by Isis::LeastSquares::AddKnown().
void Isis::BasisFunction::SetCoefficients | ( | const std::vector< double > & | coefs | ) |
Set the coefficients for the equation.
coefs | A vector of coefficients for the equation. |
Definition at line 42 of file BasisFunction.cpp.
References p_coefs, p_numCoefs, Isis::IException::Programmer, and Isis::toString().
Referenced by Isis::SpiceRotation::DCJdt(), Isis::SpiceRotation::EvaluatePolyFunction(), Isis::SpicePosition::LoadHermiteCache(), Isis::PolynomialUnivariate::PolynomialUnivariate(), Isis::SpicePosition::SetEphemerisTimePolyFunction(), Isis::SpiceRotation::setEphemerisTimePolyFunction(), Isis::SpiceRotation::SetPolynomial(), Isis::SpicePosition::SetPolynomial(), Isis::LeastSquares::SolveQRD(), Isis::LeastSquares::SolveSparse(), and Isis::LeastSquares::SolveSVD().
|
inline |
Returns the cth term.
This is only valid after a Evalute/Expand has been invoked. It represents the expansion of the variables into the ith term. For example,
would return x*y for the 3rd term (zero-based)
c | The index for the desired coefficient. |
Definition at line 97 of file BasisFunction.h.
References p_terms.
Referenced by Isis::LeastSquares::FillSparseA(), Isis::LeastSquares::SolveQRD(), and Isis::LeastSquares::SolveSVD().
|
inline |
Returns the number of variables in the equation.
Definition at line 72 of file BasisFunction.h.
References p_numVars.
Referenced by Isis::LeastSquares::AddKnown(), and Isis::NthOrderPolynomial::Expand().
|
protected |
A vector of the coefficients in the equation.
Call it by using Coefficient()
Definition at line 123 of file BasisFunction.h.
Referenced by Coefficient(), Evaluate(), and SetCoefficients().
|
protected |
The name of the equation. Call it by using Name()
Definition at line 113 of file BasisFunction.h.
Referenced by BasisFunction(), and Name().
|
protected |
The number of coefficients in the equation.
Call it by using Coefficients()
Definition at line 119 of file BasisFunction.h.
Referenced by BasisFunction(), Coefficients(), Evaluate(), and SetCoefficients().
|
protected |
The number of variables in the equation. Call it by using Variables()
Definition at line 115 of file BasisFunction.h.
Referenced by BasisFunction(), Evaluate(), and Variables().
|
protected |
A vector of the terms in the equation.
Call it by using Term()
Definition at line 127 of file BasisFunction.h.
Referenced by Evaluate(), Expand(), Isis::NthOrderPolynomial::Expand(), Isis::PolynomialBivariate::Expand(), Isis::PolynomialUnivariate::Expand(), and Term().
U.S. Department of the Interior | U.S. Geological Survey ISIS | Privacy & Disclaimers | Astrogeology Research Program To contact us, please post comments and questions on the USGS Astrogeology Discussion Board To report a bug, or suggest a feature go to: ISIS Github File Modified: 07/13/2023 15:17:55 |