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
|
CFMatrix::CFMatrix(int m,int n)
{
_rowCount = m;
_columnCount = n;
clear();
}
CFMatrix CFMatrix::operator+(CFMatrix that)
{
CFMatrix answer(this->rowCount(),this->columnCount());
for(int i=0;i<this->rowCount();i++)
{
for(int j=0;j<this->columnCount();j++)
{
answer.setItem(i,j,this->item(i,j)+that.item(i,j));
}
}
return answer;
}
double CFMatrix::item(int m, int n)
{
return _body[m][n];
}
void CFMatrix::setItem(int m, int n, double value)
{
_body[m][n]=value;
}
int CFMatrix::rowCount()
{
return _rowCount;
}
int CFMatrix::columnCount()
{
return _columnCount;
}
void CFMatrix::clear()
{
for(int i=0;i<rowCount();i++)
{
for(int j=0;j<columnCount();j++)
{
_body[i][j]=0.0;
}
}
}
//this is operator I have issue with.
CFMatrix CFMatrix::operator *(CFMatrix that)
{
if(this->rowCount()>this->columnCount())
{
CFMatrix answer(this->rowCount()-this->columnCount(),that.columnCount());
}
else
{
CFMatrix answer(this->columnCount()-this->rowCount(),that.columnCount());
}
if(this->rowCount()==that.columnCount() && this->columnCount()==that.rowCount())
{
for(int i=0;i<this->rowCount();i++)
{
for(int j=0;j<this->columnCount();j++)
{
answer.setItem(i,j,this->item(i,j)*that.item(j,i));
}
//How do you add them up????
}
}
return answer;
}
|