Linear Algebra
master
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 926 of file Matrix.cpp.
void operator*= | ( | Matrix & | A, |
double | s | ||
) |
Definition at line 934 of file Matrix.cpp.
Definition at line 938 of file Matrix.cpp.
Definition at line 942 of file Matrix.cpp.
Definition at line 945 of file Matrix.cpp.
SquareMatrix operator* | ( | const SquareMatrix & | a, |
double | s | ||
) |
Definition at line 948 of file Matrix.cpp.
Definition at line 951 of file Matrix.cpp.
Definition at line 955 of file Matrix.cpp.
SquareMatrix&& operator* | ( | SquareMatrix && | a, |
double | s | ||
) |
Definition at line 959 of file Matrix.cpp.
Definition at line 964 of file Matrix.cpp.
Definition at line 965 of file Matrix.cpp.
Definition at line 966 of file Matrix.cpp.
Definition at line 967 of file Matrix.cpp.
SquareMatrix operator* | ( | double | s, |
const SquareMatrix & | a | ||
) |
Definition at line 968 of file Matrix.cpp.
Definition at line 969 of file Matrix.cpp.
Definition at line 970 of file Matrix.cpp.
SquareMatrix&& operator* | ( | double | s, |
SquareMatrix && | a | ||
) |
Definition at line 971 of file Matrix.cpp.