cotila  1.2.1
A compile time linear algebra system

◆ slice()

template<std::size_t M, typename T , std::size_t N>
constexpr vector<T, M> cotila::slice ( vector< T, N >  v,
std::size_t  start = 0 
)
Parameters
van N-vector of type T
startthe first index of the subvector
Returns
an M-vector $ \textbf{v}_{\textrm{start}:\left(\textrm{start} + M - 1\right)} $ such that $ \left(\textbf{v}_{\textrm{start}:\left(\textrm{start} + M - 1\right)}\right)_i = \textbf{v}_{\textrm{start} + i} $

Slices a vector into a subvector.