Linear Algebra
arduino
Accessible implementations of linear algebra algorithms
|
Matrix and vector transposition.
Functions | |
Matrix | explicit_transpose (const Matrix &in) |
Matrix transpose for general matrices. More... | |
Matrix | transpose (const Matrix &in) |
Matrix transpose for rectangular or square matrices and row or column vectors. More... | |
Matrix && | transpose (Matrix &&in) |
Matrix transpose for rectangular or square matrices and row or column vectors. More... | |
SquareMatrix | transpose (const SquareMatrix &in) |
Square matrix transpose. More... | |
SquareMatrix && | transpose (SquareMatrix &&in) |
Square matrix transpose. More... | |
RowVector | transpose (const Vector &in) |
Vector transpose. More... | |
RowVector | transpose (Vector &&in) |
Vector transpose. More... | |
Vector | transpose (const RowVector &in) |
Vector transpose. More... | |
Vector | transpose (RowVector &&in) |
Vector transpose. More... | |
PermutationMatrix | transpose (const PermutationMatrix &P) |
Transpose a permutation matrix (inverse permutation). More... | |
PermutationMatrix && | transpose (PermutationMatrix &&P) |
Transpose a permutation matrix (inverse permutation). More... | |
Matrix transpose for general matrices.
Definition at line 1050 of file Matrix.cpp.
Matrix transpose for rectangular or square matrices and row or column vectors.
Definition at line 1064 of file Matrix.cpp.
Matrix transpose for rectangular or square matrices and row or column vectors.
Definition at line 1080 of file Matrix.cpp.
SquareMatrix transpose | ( | const SquareMatrix & | in | ) |
Square matrix transpose.
Definition at line 1091 of file Matrix.cpp.
SquareMatrix&& transpose | ( | SquareMatrix && | in | ) |
Square matrix transpose.
Definition at line 1096 of file Matrix.cpp.
Vector transpose.
Definition at line 1101 of file Matrix.cpp.
Vector transpose.
Definition at line 1102 of file Matrix.cpp.
Vector transpose.
Definition at line 1103 of file Matrix.cpp.
Vector transpose.
Definition at line 1104 of file Matrix.cpp.
|
inline |
Transpose a permutation matrix (inverse permutation).
Definition at line 358 of file PermutationMatrix.hpp.
|
inline |
Transpose a permutation matrix (inverse permutation).
Definition at line 364 of file PermutationMatrix.hpp.