Linear Algebra
master
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 791 of file Matrix.cpp.
Definition at line 801 of file Matrix.cpp.
Definition at line 807 of file Matrix.cpp.
Definition at line 811 of file Matrix.cpp.
Definition at line 816 of file Matrix.cpp.
Definition at line 821 of file Matrix.cpp.
Definition at line 825 of file Matrix.cpp.
Definition at line 829 of file Matrix.cpp.
Definition at line 834 of file Matrix.cpp.
Definition at line 838 of file Matrix.cpp.
Definition at line 842 of file Matrix.cpp.
SquareMatrix&& operator- | ( | SquareMatrix && | a, |
const SquareMatrix & | b | ||
) |
Definition at line 847 of file Matrix.cpp.
SquareMatrix&& operator- | ( | const SquareMatrix & | a, |
SquareMatrix && | b | ||
) |
Definition at line 851 of file Matrix.cpp.
SquareMatrix&& operator- | ( | SquareMatrix && | a, |
SquareMatrix && | b | ||
) |
Definition at line 855 of file Matrix.cpp.
Definition at line 860 of file Matrix.cpp.
Definition at line 864 of file Matrix.cpp.
SquareMatrix operator- | ( | const SquareMatrix & | a, |
const SquareMatrix & | b | ||
) |
Definition at line 868 of file Matrix.cpp.