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] |
_dgematrix+dsymatrix operator
Definition at line 3 of file _dsymatrix-_dgematrix.hpp.
References _dsymatrix::destroy(), 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 for(long i=0; i<matA.n; i++) { for(long j=0; j<matA.n; j++) { matB(i,j)+=matA(i,j); } } matA.destroy(); return matB; }
_dgematrix operator- | ( | const _dsymatrix & | matA, |
const _dgematrix & | matB | ||
) | [inline] |
_dsymatrix-dgematrix operator
Definition at line 26 of file _dsymatrix-_dgematrix.hpp.
References _dsymatrix::destroy(), 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 subtraction." << std::endl << "Your input was (" << matA.n << "x" << matA.n << ") - (" << matB.m << "x" << matB.n << ")." << std::endl; exit(1); } #endif//CPPL_DEBUG for(long i=0; i<matA.n; i++) { for(long j=0; j<matA.n; j++) { matB(i,j) =matA(i,j)-matB(i,j); } } matA.destroy(); return matB; }
_dgematrix operator* | ( | const _dsymatrix & | matA, |
const _dgematrix & | matB | ||
) | [inline] |
_dgematrix*dgematrix operator
Definition at line 49 of file _dsymatrix-_dgematrix.hpp.
References _(), _dsymatrix::array, _dgematrix::array, dgematrix::array, _dgematrix::destroy(), _dsymatrix::destroy(), _dgematrix::m, dgematrix::m, _dsymatrix::n, and _dgematrix::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 ); matA.destroy(); matB.destroy(); return _(newmat); }