SG++-Doxygen-Documentation
|
Class that implements the virtual class OperationMatrix for the application of classification for the Systemmatrix by using a density function. More...
#include <LogDensitySystemMatrix.hpp>
Public Member Functions | |
void | generateb (base::DataVector &b) |
Generates the right hand side of the classification equation. More... | |
LogDensitySystemMatrix (base::Grid &grid, base::DataVector &alphaRef, base::DataMatrix &trainData, base::OperationMatrix &C, double lambdaRegression) | |
Std-Constructor. More... | |
void | mult (base::DataVector &alpha, base::DataVector &result) |
Generates the left hand side of the classification equation. More... | |
virtual | ~LogDensitySystemMatrix () |
Std-Destructor. More... | |
Public Member Functions inherited from sgpp::base::OperationMatrix | |
OperationMatrix () | |
Constructor. More... | |
virtual | ~OperationMatrix () |
Destructor. More... | |
Class that implements the virtual class OperationMatrix for the application of classification for the Systemmatrix by using a density function.
sgpp::datadriven::LogDensitySystemMatrix::LogDensitySystemMatrix | ( | base::Grid & | grid, |
base::DataVector & | alphaRef, | ||
base::DataMatrix & | trainData, | ||
base::OperationMatrix & | C, | ||
double | lambdaRegression | ||
) |
Std-Constructor.
grid | reference to the sparse grid |
alphaRef | reference to DataVector hierarchical coefficients |
trainData | reference to DataVector that contains the training data |
C | the regression functional |
lambdaRegression | the regression parameter |
|
virtual |
Std-Destructor.
void sgpp::datadriven::LogDensitySystemMatrix::generateb | ( | base::DataVector & | b | ) |
Generates the right hand side of the classification equation.
b | reference to the vector which will contain the result of the matrix vector multiplication on the rhs |
|
virtual |
Generates the left hand side of the classification equation.
alpha | parameters for the sparse grid functions |
result | reference to the vector which will contain the result |
Implements sgpp::base::OperationMatrix.