Linear Algebra
master
Accessible implementations of linear algebra algorithms
|
Matrix and vector addition.
Functions | |
Matrix | operator+ (const Matrix &A, const Matrix &B) |
Matrix addition. More... | |
void | operator+= (Matrix &A, const Matrix &B) |
Matrix && | operator+ (Matrix &&A, const Matrix &B) |
Matrix && | operator+ (const Matrix &A, Matrix &&B) |
Matrix && | operator+ (Matrix &&A, Matrix &&B) |
Vector && | operator+ (Vector &&a, const Vector &b) |
Vector && | operator+ (const Vector &a, Vector &&b) |
Vector && | operator+ (Vector &&a, Vector &&b) |
RowVector && | operator+ (RowVector &&a, const RowVector &b) |
RowVector && | operator+ (const RowVector &a, RowVector &&b) |
RowVector && | operator+ (RowVector &&a, RowVector &&b) |
SquareMatrix && | operator+ (SquareMatrix &&a, const SquareMatrix &b) |
SquareMatrix && | operator+ (const SquareMatrix &a, SquareMatrix &&b) |
SquareMatrix && | operator+ (SquareMatrix &&a, SquareMatrix &&b) |
Vector | operator+ (const Vector &a, const Vector &b) |
RowVector | operator+ (const RowVector &a, const RowVector &b) |
SquareMatrix | operator+ (const SquareMatrix &a, const SquareMatrix &b) |
Matrix addition.
Definition at line 701 of file Matrix.cpp.
Definition at line 711 of file Matrix.cpp.
Definition at line 717 of file Matrix.cpp.
Definition at line 721 of file Matrix.cpp.
Definition at line 725 of file Matrix.cpp.
Definition at line 730 of file Matrix.cpp.
Definition at line 734 of file Matrix.cpp.
Definition at line 738 of file Matrix.cpp.
Definition at line 743 of file Matrix.cpp.
Definition at line 747 of file Matrix.cpp.
Definition at line 751 of file Matrix.cpp.
SquareMatrix&& operator+ | ( | SquareMatrix && | a, |
const SquareMatrix & | b | ||
) |
Definition at line 756 of file Matrix.cpp.
SquareMatrix&& operator+ | ( | const SquareMatrix & | a, |
SquareMatrix && | b | ||
) |
Definition at line 760 of file Matrix.cpp.
SquareMatrix&& operator+ | ( | SquareMatrix && | a, |
SquareMatrix && | b | ||
) |
Definition at line 764 of file Matrix.cpp.
Definition at line 769 of file Matrix.cpp.
Definition at line 773 of file Matrix.cpp.
SquareMatrix operator+ | ( | const SquareMatrix & | a, |
const SquareMatrix & | b | ||
) |
Definition at line 777 of file Matrix.cpp.