cotila  1.2.1
A compile time linear algebra system

◆ elementwise()

template<typename F , typename T , typename... Vectors, typename U = std::invoke_result_t<F, T, typename Vectors::value_type...>, std::size_t N = detail::all_same_value<std::size_t, Vectors::size...>::value>
constexpr vector<U, N> cotila::elementwise ( f,
const vector< T, N > &  v,
const Vectors &...  vectors 
)
Parameters
fa function of type F that operates on many scalars of type T and returns a scalar of type U
van N-vector of type T
vectorsadditional N-vectors of type T
Returns
an N-vector of type T with elements described by $ f\left(\textbf{v}_i, \ldots\right) $

Applies a function elementwise between many vectors.