6 if(
n!=mat.
n ||
m!=mat.
m){
8 std::cerr <<
"These two matrises can not make a summation." << std::endl
9 <<
"Your input was (" <<
m <<
"x" <<
n <<
") += (" << mat.
m <<
"x" << mat.
n <<
")." << std::endl;
14 for(CPPL_INT
i=0;
i<mat.
m;
i++){
15 const CPPL_INT jmax =std::min(
n,
i+mat.
ku+1);
16 for(CPPL_INT j=std::max(CPPL_INT(0),
i-mat.
kl); j<jmax; j++){
30 if(
n!=mat.
n ||
m!=mat.
m){
32 std::cerr <<
"These two matrises can not make a subtraction." << std::endl
33 <<
"Your input was (" <<
m <<
"x" <<
n <<
") -= (" << mat.
m <<
"x" << mat.
n <<
")." << std::endl;
38 for(CPPL_INT
i=0;
i<mat.
m;
i++){
39 const CPPL_INT jmax =std::min(
n,
i+mat.
ku+1);
40 for(CPPL_INT j=std::max(CPPL_INT(0),
i-mat.
kl); j<jmax; j++){
55 std::cerr <<
"These two matrises can not make a product." << std::endl
56 <<
"Your input was (" <<
m <<
"x" <<
n <<
") *= (" << mat.
m <<
"x" << mat.
n <<
")." << std::endl;
64 for(CPPL_INT
i=0;
i<newmat.
m;
i++){
65 for(CPPL_INT j=0; j<newmat.
n; j++){
66 const CPPL_INT kmax =std::min(mat.
m,j+mat.
kl+1);
67 for(CPPL_INT k=std::max(CPPL_INT(0),j-mat.
ku); k<kmax; k++){
87 if(matA.
n!=matB.
n || matA.
m!=matB.
m){
89 std::cerr <<
"These two matrises can not make a summation." << std::endl
90 <<
"Your input was (" << matA.
m <<
"x" << matA.
n <<
") + (" << matB.
m <<
"x" << matB.
n <<
")." << std::endl;
97 for(CPPL_INT
i=0;
i<matB.
m;
i++){
98 const CPPL_INT jmax =std::min(matB.
n,
i+matB.
ku+1);
99 for(CPPL_INT j=std::max(CPPL_INT(0),
i-matB.
kl); j<jmax; j++){
100 newmat(
i,j) += matB(
i,j);
111 {CPPL_VERBOSE_REPORT;
113 if(matA.
n!=matB.
n || matA.
m!=matB.
m){
115 std::cerr <<
"These two matrises can not make a summation." << std::endl
116 <<
"Your input was (" << matA.
m <<
"x" << matA.
n <<
") + (" << matB.
m <<
"x" << matB.
n <<
")." << std::endl;
123 for(CPPL_INT
i=0;
i<matB.
m;
i++){
124 const CPPL_INT jmax =std::min(matB.
n,
i+matB.
ku+1);
125 for(CPPL_INT j=std::max(CPPL_INT(0),
i-matB.
kl); j<jmax; j++){
126 newmat(
i,j) -= matB(
i,j);
137 {CPPL_VERBOSE_REPORT;
141 std::cerr <<
"These two matrises can not make a product." << std::endl
142 <<
"Your input was (" << matA.
m <<
"x" << matA.
n <<
") * (" << matB.
m <<
"x" << matB.
n <<
")." << std::endl;
150 for(CPPL_INT
i=0;
i<newmat.
m;
i++){
151 for(CPPL_INT j=0; j<newmat.
n; j++){
152 const CPPL_INT kmax =std::min(matB.
m,j+matB.
kl+1);
153 for(CPPL_INT k=std::max(CPPL_INT(0),j-matB.
ku); k<kmax; k++){
154 newmat(
i,j) += matA(
i,k)*matB(k,j);
CPPL_INT m
matrix row size
CPPL_INT ku
upper band width
_dgematrix i(const _dgbmatrix &mat)
friend void swap(dgematrix &, dgematrix &)
double & operator()(const CPPL_INT &, const CPPL_INT &)
CPPL_INT n
matrix column size
Real Double-precision General Dence Matrix Class.
CPPL_INT kl
lower band width
_dgematrix operator*(const dgematrix &matA, const _dgbmatrix &matB)
CPPL_INT n
matrix column size
_dgematrix operator-(const dgematrix &matA, const _dgbmatrix &matB)
dgematrix & operator*=(const dgematrix &)
(DO NOT USE) Smart-temporary Real Double-precision General Dence Matrix Class
_dgematrix operator+(const dgematrix &matA, const _dgbmatrix &matB)
(DO NOT USE) Smart-temporary Real Double-precision General Band Matrix Class
dgematrix & operator-=(const dgematrix &)
friend _dgematrix i(const dgematrix &)
dgematrix & operator+=(const dgematrix &)
_dcovector _(dcovector &vec)
CPPL_INT m
matrix row size