Linear Algebra
arduino
Accessible implementations of linear algebra algorithms
|
Matrix and vector subtraction.
Functions | |
Matrix | operator- (const Matrix &A, const Matrix &B) |
Matrix subtraction. 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 subtraction.
Definition at line 810 of file Matrix.cpp.
Definition at line 820 of file Matrix.cpp.
Definition at line 826 of file Matrix.cpp.
Definition at line 830 of file Matrix.cpp.
Definition at line 835 of file Matrix.cpp.
Definition at line 840 of file Matrix.cpp.
Definition at line 844 of file Matrix.cpp.
Definition at line 848 of file Matrix.cpp.
Definition at line 853 of file Matrix.cpp.
Definition at line 857 of file Matrix.cpp.
Definition at line 861 of file Matrix.cpp.
SquareMatrix&& operator- | ( | SquareMatrix && | a, |
const SquareMatrix & | b | ||
) |
Definition at line 866 of file Matrix.cpp.
SquareMatrix&& operator- | ( | const SquareMatrix & | a, |
SquareMatrix && | b | ||
) |
Definition at line 870 of file Matrix.cpp.
SquareMatrix&& operator- | ( | SquareMatrix && | a, |
SquareMatrix && | b | ||
) |
Definition at line 874 of file Matrix.cpp.
Definition at line 879 of file Matrix.cpp.
Definition at line 883 of file Matrix.cpp.
SquareMatrix operator- | ( | const SquareMatrix & | a, |
const SquareMatrix & | b | ||
) |
Definition at line 887 of file Matrix.cpp.