cotila  1.2.1
A compile time linear algebra system

◆ matrix() [2/2]

template<typename T , std::size_t M, std::size_t N>
matrix ( const   T(&)[M][N][2]) -> matrix< std::complex< T >, M, N >
related

This deduction guide allows cotila::matrix to be constructed like this:

cotila::matrix m{{{{1., 0.}, {2., 1.}}, {{3., 2.}, {4., 3.}}}}; // deduces the type of m to be cotila::matrix<std::complex<double>, 2, 2>