![]() |
SG++-Doxygen-Documentation
|
Sparse grid interpolant gradient of a scalar-valued function. More...
#include <InterpolantScalarFunctionGradient.hpp>
Public Member Functions | |
| void | clone (std::unique_ptr< ScalarFunctionGradient > &clone) const override |
| double | eval (const base::DataVector &x, base::DataVector &gradient) override |
| Evaluation of the function and its gradient. More... | |
| const base::DataVector & | getAlpha () const |
| InterpolantScalarFunctionGradient (base::Grid &grid, const base::DataVector &alpha) | |
| Constructor. More... | |
| void | setAlpha (const base::DataVector &alpha) |
| ~InterpolantScalarFunctionGradient () override | |
| Destructor. More... | |
Public Member Functions inherited from sgpp::optimization::ScalarFunctionGradient | |
| size_t | getNumberOfParameters () const |
| ScalarFunctionGradient (size_t d) | |
| Constructor. More... | |
| virtual | ~ScalarFunctionGradient () |
| Destructor. More... | |
Protected Attributes | |
| base::DataVector | alpha |
| coefficient vector More... | |
| base::Grid & | grid |
| sparse grid More... | |
| std::unique_ptr< base::OperationEvalGradient > | opEvalGradient |
| pointer to evaluation operation More... | |
Protected Attributes inherited from sgpp::optimization::ScalarFunctionGradient | |
| size_t | d |
| dimension of the domain More... | |
Sparse grid interpolant gradient of a scalar-valued function.
|
inline |
Constructor.
Do not destruct the grid before the InterpolantScalarFunctionGradient object!
| grid | sparse grid |
| alpha | coefficient vector |
Referenced by clone().
|
inlineoverride |
Destructor.
|
inlineoverridevirtual |
| [out] | clone | pointer to cloned object |
Implements sgpp::optimization::ScalarFunctionGradient.
References alpha, grid, and InterpolantScalarFunctionGradient().
|
inlineoverridevirtual |
Evaluation of the function and its gradient.
| x | evaluation point \(\vec{x} \in [0, 1]^d\) | |
| [out] | gradient | gradient \(\nabla f(\vec{x}) \in \mathbb{R}^d\) |
Implements sgpp::optimization::ScalarFunctionGradient.
References alpha, sgpp::optimization::ScalarFunctionGradient::d, and opEvalGradient.
|
inline |
References alpha.
|
inline |
| alpha | coefficient vector |
References alpha.
|
protected |
coefficient vector
Referenced by clone(), eval(), getAlpha(), python.learner.Classifier.Classifier::refineGrid(), and setAlpha().
|
protected |
sparse grid
Referenced by clone(), python.uq.learner.Interpolant.Interpolant::doLearningIteration(), python.learner.Classifier.Classifier::evalError(), python.uq.learner.Interpolant.Interpolant::evalError(), python.uq.learner.SimulationLearner.SimulationLearner::getCollocationNodes(), python.uq.learner.SimulationLearner.SimulationLearner::getGrid(), python.uq.learner.SimulationLearner.SimulationLearner::getLearner(), python.uq.learner.Regressor.Regressor::learnData(), python.uq.learner.Regressor.Regressor::learnDataWithFolding(), python.uq.learner.Regressor.Regressor::learnDataWithTest(), python.learner.Classifier.Classifier::refineGrid(), python.learner.Regressor.Regressor::refineGrid(), python.uq.learner.Regressor.Regressor::refineGrid(), python.uq.learner.SimulationLearner.SimulationLearner::refineGrid(), python.learner.Classifier.Classifier::updateResults(), python.learner.Regressor.Regressor::updateResults(), and python.uq.learner.Regressor.Regressor::updateResults().
|
protected |
pointer to evaluation operation
Referenced by eval().