Linear Algebra
arduino
Accessible implementations of linear algebra algorithms
|
Multiplication by a scalar.
Functions | |
Matrix | operator* (const Matrix &A, double s) |
Scalar multiplication. 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) |
Matrix | operator* (double s, const Matrix &A) |
Matrix && | operator* (double s, Matrix &&A) |
Vector | operator* (double s, const Vector &a) |
RowVector | operator* (double s, const RowVector &a) |
SquareMatrix | operator* (double s, const SquareMatrix &a) |
Vector && | operator* (double s, Vector &&a) |
RowVector && | operator* (double s, RowVector &&a) |
SquareMatrix && | operator* (double s, SquareMatrix &&a) |
Scalar multiplication.
Definition at line 945 of file Matrix.cpp.
void operator*= | ( | Matrix & | A, |
double | s | ||
) |
Definition at line 953 of file Matrix.cpp.
Definition at line 957 of file Matrix.cpp.
Definition at line 961 of file Matrix.cpp.
Definition at line 964 of file Matrix.cpp.
SquareMatrix operator* | ( | const SquareMatrix & | a, |
double | s | ||
) |
Definition at line 967 of file Matrix.cpp.
Definition at line 970 of file Matrix.cpp.
Definition at line 974 of file Matrix.cpp.
SquareMatrix&& operator* | ( | SquareMatrix && | a, |
double | s | ||
) |
Definition at line 978 of file Matrix.cpp.
Definition at line 983 of file Matrix.cpp.
Definition at line 984 of file Matrix.cpp.
Definition at line 985 of file Matrix.cpp.
Definition at line 986 of file Matrix.cpp.
SquareMatrix operator* | ( | double | s, |
const SquareMatrix & | a | ||
) |
Definition at line 987 of file Matrix.cpp.
Definition at line 988 of file Matrix.cpp.
Definition at line 989 of file Matrix.cpp.
SquareMatrix&& operator* | ( | double | s, |
SquareMatrix && | a | ||
) |
Definition at line 990 of file Matrix.cpp.