|
Linear Algebra
arduino
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 1003 of file Matrix.cpp.
| void operator/= | ( | Matrix & | A, |
| double | s | ||
| ) |
Definition at line 1011 of file Matrix.cpp.
Definition at line 1015 of file Matrix.cpp.
Definition at line 1019 of file Matrix.cpp.
Definition at line 1022 of file Matrix.cpp.
| SquareMatrix operator/ | ( | const SquareMatrix & | a, |
| double | s | ||
| ) |
Definition at line 1025 of file Matrix.cpp.
Definition at line 1028 of file Matrix.cpp.
Definition at line 1032 of file Matrix.cpp.
| SquareMatrix&& operator/ | ( | SquareMatrix && | a, |
| double | s | ||
| ) |
Definition at line 1036 of file Matrix.cpp.