00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #include "matrix.cpp"
00027
00028 namespace PLib {
00029
00030 Matrix<char>&
00031 Matrix<char>::operator*=(double a)
00032 {
00033 char *p1 ;
00034 p1 = m-1 ;
00035 const int size = rows()*cols() ;
00036 for(int i=size; i>0; --i){
00037 *p1 = (char)(a*double(*p1)) ;
00038 ++p1 ;
00039 }
00040 return *this ;
00041 }
00042
00043 Matrix<char>&
00044 Matrix<char>::operator+=(double a)
00045 {
00046 char *p1 ;
00047 p1 = m-1 ;
00048 const int size = rows()*cols() ;
00049 for(int i=size; i>0; --i)
00050 *(++p1) += (char)a ;
00051 return *this ;
00052 }
00053
00054 Matrix<char>&
00055 Matrix<char>::operator-=(double a)
00056 {
00057 char *p1 ;
00058 p1 = m-1 ;
00059 const int size = rows()*cols() ;
00060 for(int i=size; i>0; --i)
00061 *(++p1) -= (char)a ;
00062 return *this ;
00063 }
00064
00065 Matrix<char>&
00066 Matrix<char>::operator/=(double a)
00067 {
00068 char *p1 ;
00069 p1 = m-1 ;
00070 const int size = rows()*cols() ;
00071 for(int i=size; i>0; --i){
00072 *p1 = (char)(double(*p1)/a) ;
00073 ++p1 ;
00074 }
00075 return *this ;
00076 }
00077
00078
00079
00080 #ifdef NO_IMPLICIT_TEMPLATES
00081
00082 template class Matrix<char> ;
00083
00084 template Matrix<char> operator+(const Matrix<char>&,const Matrix<char>&);
00085 template Matrix<char> operator-(const Matrix<char>&,const Matrix<char>&);
00086 template Matrix<char> operator*(const Matrix<char>&,const Matrix<char>&);
00087 template Matrix<char> operator*(const double,const Matrix<char>&);
00088 template Matrix<char> operator*(const Complex&,const Matrix<char>&);
00089 template Vector<char> operator*(const Matrix<char>&,const Vector<char>&);
00090
00091 template int operator==(const Matrix<char>&,const Matrix<char>&);
00092 template Matrix<char> comm(const Matrix<char>&,const Matrix<char>&);
00093
00094 #endif
00095
00096 }