Go to the source code of this file.
Functions | |
_dgematrix | operator+ (const dsymatrix &matA, const dgematrix &matB) |
_dgematrix | operator- (const dsymatrix &matA, const dgematrix &matB) |
_dgematrix | operator* (const dsymatrix &matA, const dgematrix &matB) |
_dgematrix operator+ | ( | const dsymatrix & | matA, |
const dgematrix & | matB | ||
) | [inline] |
dsymatrix+dgematrix operator
Definition at line 3 of file dsymatrix-dgematrix.hpp.
References _(), i(), dgematrix::m, dsymatrix::n, and dgematrix::n.
{VERBOSE_REPORT; #ifdef CPPL_DEBUG if(matA.n!=matB.n || matA.n!=matB.m){ ERROR_REPORT; std::cerr << "These two matrises can not make a summation." << std::endl << "Your input was (" << matA.n << "x" << matA.n << ") + (" << matB.m << "x" << matB.n << ")." << std::endl; exit(1); } #endif//CPPL_DEBUG dgematrix newmat(matB); for(long i=0; i<matA.n; i++) { for(long j=0; j<matA.n; j++) { newmat(i,j)+=matA(i,j); } } return _(newmat); }
_dgematrix operator- | ( | const dsymatrix & | matA, |
const dgematrix & | matB | ||
) | [inline] |
dsymatrix-dgematrix operator
Definition at line 26 of file dsymatrix-dgematrix.hpp.
References _(), i(), dgematrix::m, dsymatrix::n, and dgematrix::n.
{VERBOSE_REPORT; #ifdef CPPL_DEBUG if(matA.n!=matB.n || matA.n!=matB.m){ ERROR_REPORT; std::cerr << "These two matrises can not make a summation." << std::endl << "Your input was (" << matA.n << "x" << matA.n << ") + (" << matB.m << "x" << matB.n << ")." << std::endl; exit(1); } #endif//CPPL_DEBUG dgematrix newmat(-matB); for(long i=0; i<matA.n; i++){ for(long j=0; j<matA.n; j++){ newmat(i,j)+=matA(i,j); } } return _(newmat); }
_dgematrix operator* | ( | const dsymatrix & | matA, |
const dgematrix & | matB | ||
) | [inline] |
dsymatrix*dgematrix operator
Definition at line 50 of file dsymatrix-dgematrix.hpp.
References _(), dgematrix::array, dsymatrix::array, dgematrix::m, dgematrix::n, and dsymatrix::n.
{VERBOSE_REPORT; #ifdef CPPL_DEBUG if(matA.n!=matB.m){ ERROR_REPORT; std::cerr << "These two matrises can not make a product." << std::endl << "Your input was (" << matA.n << "x" << matA.n << ") * (" << matB.m << "x" << matB.n << ")." << std::endl; exit(1); } #endif//CPPL_DEBUG dgematrix newmat( matA.n, matB.n ); dsymm_( 'l', 'l', matA.n, matB.n, 1.0, matA.array, matA.n, matB.array, matB.m, 0.0, newmat.array, newmat.m ); return _(newmat); }