cotila  1.2.1
A compile time linear algebra system

◆ swaprow()

template<std::size_t M, std::size_t N, typename T >
constexpr matrix<T, M, N> cotila::swaprow ( matrix< T, M, N >  m,
std::size_t  a,
std::size_t  b 
)
Parameters
man $ M \times N $ matrix of type T
athe index of a row to swap
bthe index of a row to swap
Returns
an $ M \times N $ matrix $ \textbf{m}' $ of type T such that $ {\textbf{m}'}_{ij} = \begin{cases} \textbf{m}_{bj} & i = a\\ \textbf{m}_{aj} & i = b\\ \textbf{m}_{ij} & \textrm{otherwise} \end{cases} $

Swap two rows of a matrix.