cotila  1.2.1
A compile time linear algebra system

◆ matmul()

template<typename T , std::size_t M, std::size_t N, std::size_t P>
constexpr matrix<T, M, P> cotila::matmul ( const matrix< T, M, N > &  a,
const matrix< T, N, P > &  b 
)
Parameters
aan $M \times N$ matrix
ban $N \times P$ matrix
Returns
an $ M \times P $ matrix $ \textbf{a}\textbf{b} $ of type T such that $ \left(\textbf{ab}\right)_{ij} = \sum\limits_{k=1}^{N}\textbf{a}_{ik}\textbf{b}_{kj} $

Computes the product of two matrices.