cotila  1.2.1
A compile time linear algebra system

◆ swapcol()

template<std::size_t M, std::size_t N, typename T >
constexpr matrix<T, M, N> cotila::swapcol ( 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 column to swap
bthe index of a column to swap
Returns
an $ M \times N $ matrix $ \textbf{m}' $ of type T such that $ {\textbf{m}'}_{ij} = \begin{cases} \textbf{m}_{ib} & j = a\\ \textbf{m}_{ia} & j = b\\ \textbf{m}_{ij} & \textrm{otherwise} \end{cases} $

Swap two rows of a matrix.