cotila  1.2.1
A compile time linear algebra system

◆ elementwise()

template<typename F , typename T , typename... Matrices, typename U = std::invoke_result_t<F, T, typename Matrices::value_type...>, std::size_t N = detail::all_same_value<std::size_t, Matrices::column_size...>::value, std::size_t M = detail::all_same_value<std::size_t, Matrices::row_size...>::value>
constexpr matrix<U, N, M> cotila::elementwise ( f,
const matrix< T, N, M > &  m,
const Matrices &...  matrices 
)
Parameters
fa function of type F that operates on many scalars of type T and returns a scalar of type U
man $ N \times M $ matrix of type T
matricesadditional $ N \times M $ matrices of type T
Returns
an $ N \times M $ matrix of type T with elements described by $ f\left(\textbf{m}_{ij}, \ldots\right) $

Applies a function elementwise between many matrices.