1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
/***********************************************/
/**
* @file matrixGeneratorMultiplication.h
*
* @brief Multiplication of matrices.
*
* @author Torsten Mayer-Guerr
* @date 2017-09-01
*
*/
/***********************************************/
#ifndef __GROOPS_MATRIXGENERATORMULTIPLICATION__
#define __GROOPS_MATRIXGENERATORMULTIPLICATION__
// Latex documentation
#ifdef DOCSTRING_MatrixGenerator
static const char *docstringMatrixGeneratorMultiplication = R"(
\subsection{Multiplication}
Multiplication of matrices.
)";
#endif
/***********************************************/
#include "base/import.h"
#include "matrixGenerator.h"
/***** CLASS ***********************************/
/** @brief Multiplication of matrices.
* @ingroup matrixGeneratorGroup
* @see MatrixGenerator */
class MatrixGeneratorMultiplication : public MatrixGeneratorBase
{
Double factor;
MatrixGeneratorPtr matrix1, matrix2;
public:
MatrixGeneratorMultiplication(Config &config);
void compute(Matrix &A, UInt rowsBefore, UInt columnsBefore, UInt &startRow, UInt &startCol);
};
/***********************************************/
/***** Inlines *********************************/
/***********************************************/
inline MatrixGeneratorMultiplication::MatrixGeneratorMultiplication(Config &config)
{
try
{
readConfig(config, "matrix1", matrix1, Config::MUSTSET, "", "");
readConfig(config, "matrix2", matrix2, Config::MUSTSET, "", "");
readConfig(config, "factor", factor, Config::DEFAULT, "1.0", "");
if(isCreateSchema(config)) return;
}
catch(std::exception &e)
{
GROOPS_RETHROW(e)
}
}
/***********************************************/
inline void MatrixGeneratorMultiplication::compute(Matrix &A, UInt /*rowsBefore*/, UInt /*columnsBefore*/, UInt &/*startRow*/, UInt &/*startCol*/)
{
try
{
A = factor * matrix1->compute() * matrix2->compute();
if(A.getType() == Matrix::SYMMETRIC)
fillSymmetric(A);
}
catch(std::exception &e)
{
GROOPS_RETHROW(e)
}
}
/***********************************************/
#endif
|