#include "tarch/la/Matrix.h"
#include <string>
#include "mghype.cpph"
Go to the source code of this file.
|
| namespace | mghype |
| | This file is part of the multigrid project within Peano 4.
|
| |
|
| template<int Rows, int Cols> |
| tarch::la::Matrix< Rows, Cols, double > | mghype::composeMatrixFromHWeightedLinearCombination (const std::vector< tarch::la::Matrix< Rows, Cols, double > > &matrices, const std::vector< int > &scaleFactors, const tarch::la::Vector< Dimensions, double > &h) |
| | Compute a weighted linear combination of matrices.
|
| |
| template<int Rows, int Cols> |
| tarch::la::Vector< Rows, double > | mghype::applyMatrixFromHWeightedLinearCombination (const std::vector< tarch::la::Matrix< Rows, Cols, double > > &matrices, const std::vector< int > &scaleFactors, const tarch::la::Vector< Dimensions, double > &h, const tarch::la::Vector< Cols, double > &v) |
| | Apply a series of vectors to another vector.
|
| |