<T>LAPACK 0.1.2
C++ Template Linear Algebra PACKage
|
Concept for a matrix that can be transposed. More...
#include <concepts.hpp>
Concept for a matrix that can be transposed.
A transposable matrix is a tlapack::concepts::Matrix that can be transposed. Ideally, the transpose operation must not involve dynamic memory allocation, so that the resulting transposed matrix is a view for the same data in the original matrix. The operation transpose_view(matrix_t&)
must be callable from the namespace tlapack
.
matrix_t | Matrix type. |