Ah ok I thought you ment to replace it. Anyway, I figured that it works like that:

Code:
float& Matrix::operator()(const int nRow, const int nCol) const
{
    return m_pfMatrix[nRow * m_nColCount + nCol];
}
thank you very much for your input.

replax