Linear Algebra
arduino
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 720 of file Matrix.cpp.
Definition at line 730 of file Matrix.cpp.
Definition at line 736 of file Matrix.cpp.
Definition at line 740 of file Matrix.cpp.
Definition at line 744 of file Matrix.cpp.
Definition at line 749 of file Matrix.cpp.
Definition at line 753 of file Matrix.cpp.
Definition at line 757 of file Matrix.cpp.
Definition at line 762 of file Matrix.cpp.
Definition at line 766 of file Matrix.cpp.
Definition at line 770 of file Matrix.cpp.
SquareMatrix&& operator+ | ( | SquareMatrix && | a, |
const SquareMatrix & | b | ||
) |
Definition at line 775 of file Matrix.cpp.
SquareMatrix&& operator+ | ( | const SquareMatrix & | a, |
SquareMatrix && | b | ||
) |
Definition at line 779 of file Matrix.cpp.
SquareMatrix&& operator+ | ( | SquareMatrix && | a, |
SquareMatrix && | b | ||
) |
Definition at line 783 of file Matrix.cpp.
Definition at line 788 of file Matrix.cpp.
Definition at line 792 of file Matrix.cpp.
SquareMatrix operator+ | ( | const SquareMatrix & | a, |
const SquareMatrix & | b | ||
) |
Definition at line 796 of file Matrix.cpp.