|
Matrix | operator+ (const Matrix &lMat, const Matrix &rMat) |
|
Matrix | operator- (const Matrix &lMat, const Matrix &rMat) |
|
Matrix | operator* (const Matrix &lMat, const Matrix &rMat) |
|
Matrix | operator* (const double &lFactor, const Matrix &rMat) |
|
Matrix | operator* (const Matrix &lMat, const double &rFactor) |
|
Matrix | operator/ (const Matrix &lMat, const Matrix &rMat) |
|
Matrix | operator/ (const double &lFactor, const Matrix &rMat) |
|
Matrix | operator/ (const Matrix &lMat, const double &rFactor) |
|
Matrix | operator+ (const Matrix &lMat, const double &rNum) |
|
Matrix | operator+ (const double &lNum, const Matrix &rMat) |
|
Matrix | operator- (const Matrix &lMat, const double &rNum) |
|
Matrix | operator- (const double &lNum, const Matrix &rMat) |
|
bool | operator== (const Matrix &lMat, const Matrix &rMat) |
|
bool | operator!= (const Matrix &lMat, const Matrix &rMat) |
|
Matrix | operator- (const Matrix &Mat) |
|
Matrix | operator+ (const Matrix &Mat) |
|
std::ostream & | operator<< (std::ostream &os, const Matrix &tmp) |
|