|
| template<typename M, typename std::enable_if< HasMatrixIndexing< M >::value, bool >::type = true> |
| TransposeView< M > | transpose_view (const M &matrix) |
| | Create a zero-copy transposed matrix view.
|
| |
| template<typename M, typename V, typename std::enable_if<(CompatibleStaticMatVecProduct< M, V >::value||CompatibleDynamicMatVecProduct< M, V >::value), bool >::type = true> |
| auto | matvec (const M &matrix, const V &vector) |
| | Create a lazy matrix times vector expression.
|
| |
| template<typename VA, typename VB, typename std::enable_if< vector_idx_pair< VA, VB >(), bool >::type = true> |
| auto | outer (const VA &a, const VB &b) |
| | Outer product.
|
| |