D | matrix_impl.hpp | 22 /** \addtogroup Matrix 28 * MATRIX 52 /** @brief Matrix 60 struct Matrix:Vector<P,R*C,Allocator> struct 78 /** @brief Create matrix 80 Matrix():Vector<P,R*C,Allocator>(){}; in Matrix() argument 82 /** @brief Create matrix 85 explicit Matrix(P init_val):Vector<P,R*C,Allocator>(init_val){}; in Matrix() argument 87 Matrix(const Matrix& other) = default; 88 Matrix(Matrix&& other) = default; [all …]
|