simdpp::reduce_min(floatint-point)

From cppreference.com
< fp
template<unsigned N, class E1>
Ret reduce_min( const Vec1<N,E1>& a );

Computes the minimum of all elements in the vector. The implementation behaves as if the following set of overloads is provided:

Ret Vec1
float float32
double float64

Contents

Parameters

a - floating-point vector

Return value

A minimum of all elements within a vector

Equivalent operation

r = min(a0 , ... , aN)

See also