Class template to implement a matrix - field multiplication. More...
#include <mia/core/sparse_solver.hh>
Static Public Member Functions | |
static void | apply (F &result, const typename TSparseSolver< F >::A_mult_x &A, const F &x) |
Class template to implement a matrix - field multiplication.
This class implements the multiplication of a sparse structured matrix by a field representing the input vector data. This structure is just a stub ans needs to be instanciated for specific fields.
F | the field that representes the data to be multiplied by the matrix |
Definition at line 155 of file sparse_solver.hh.
|
inlinestatic |
The function to apply the multiplication
[out] | result | location to store the result, ususally it should be allocated and of the same size like x |
[in] | A | sparse Matrix |
[in] | x | the filed to multiply with the matrix |
Definition at line 162 of file sparse_solver.hh.
Referenced by operator*().