Add Matrix compare with >=, <= and their test
This commit is contained in:
@@ -157,6 +157,14 @@ namespace Aurora {
|
||||
friend Matrix operator<(double aScalar, const Matrix &matrix);
|
||||
Matrix operator<(const Matrix &matrix) const;
|
||||
|
||||
Matrix operator>=(double aScalar) const;
|
||||
friend Matrix operator>=(double aScalar, const Matrix &matrix);
|
||||
Matrix operator>=(const Matrix &matrix) const;
|
||||
|
||||
Matrix operator<=(double aScalar) const;
|
||||
friend Matrix operator<=(double aScalar, const Matrix &matrix);
|
||||
Matrix operator<=(const Matrix &matrix) const;
|
||||
|
||||
Matrix operator==(double aScalar) const;
|
||||
friend Matrix operator==(double aScalar, const Matrix &matrix);
|
||||
Matrix operator==(const Matrix &matrix) const;
|
||||
|
||||
Reference in New Issue
Block a user