|
Linear Algebra
master
Accessible implementations of linear algebra algorithms
|
Division by a scalar.
Collaboration diagram for Scalar division:Functions | |
| Matrix | operator/ (const Matrix &A, double s) |
| Scalar division. More... | |
| void | operator/= (Matrix &A, double s) |
| Matrix && | operator/ (Matrix &&A, double s) |
| Vector | operator/ (const Vector &a, double s) |
| RowVector | operator/ (const RowVector &a, double s) |
| SquareMatrix | operator/ (const SquareMatrix &a, double s) |
| Vector && | operator/ (Vector &&a, double s) |
| RowVector && | operator/ (RowVector &&a, double s) |
| SquareMatrix && | operator/ (SquareMatrix &&a, double s) |
Scalar division.
Definition at line 984 of file Matrix.cpp.
| void operator/= | ( | Matrix & | A, |
| double | s | ||
| ) |
Definition at line 992 of file Matrix.cpp.
Definition at line 996 of file Matrix.cpp.
Definition at line 1000 of file Matrix.cpp.
Definition at line 1003 of file Matrix.cpp.
| SquareMatrix operator/ | ( | const SquareMatrix & | a, |
| double | s | ||
| ) |
Definition at line 1006 of file Matrix.cpp.
Definition at line 1009 of file Matrix.cpp.
Definition at line 1013 of file Matrix.cpp.
| SquareMatrix&& operator/ | ( | SquareMatrix && | a, |
| double | s | ||
| ) |
Definition at line 1017 of file Matrix.cpp.