cotila  1.2.1
A compile time linear algebra system

◆ operator[]() [1/2]

template<typename T, std::size_t N, std::size_t M>
constexpr T* cotila::matrix< T, N, M >::operator[] ( std::size_t  i)
inline
Parameters
iindex of the row
Returns
pointer to the specified row

This function returns a pointer to the specified row. The intention of this function is to then access the specified element from the row pointer. For a matrix m, accessing the element in the 5th row and 3rd column can be done with m[5][3].