GammaLib
2.1.0.dev
|
Generic matrix class definition. More...
Go to the source code of this file.
Classes | |
class | GMatrix |
Generic matrix class definition. More... | |
Functions | |
GMatrix | operator* (const GMatrix &matrix, const double &scalar) |
Multiply matrix by scalar. More... | |
GMatrix | operator* (const double &scalar, const GMatrix &matrix) |
Multiply matrix by scalar. More... | |
GMatrix | operator/ (const GMatrix &matrix, const double &scalar) |
Divide matrix by scalar. More... | |
Generic matrix class definition.
Definition in file GMatrix.hpp.
Multiply matrix by scalar.
[in] | matrix | Matrix. |
[in] | scalar | Scalar. |
scalar
.Returns a matrix where each element has been multiplied by a scalar
.
Definition at line 369 of file GMatrix.hpp.
Multiply matrix by scalar.
[in] | scalar | Scalar. |
[in] | matrix | Matrix. |
scalar
.Returns a matrix where each element has been multiplied by a scalar
.
Definition at line 387 of file GMatrix.hpp.
Divide matrix by scalar.
[in] | matrix | Matrix. |
[in] | scalar | Scalar. |
scalar
.Returns a matrix where each element has been divided by a scalar
.
Definition at line 405 of file GMatrix.hpp.