min

Get a vector whose each element is minimum value of the same indexed element of two vectors.

Vector!(CommonType!(T, S), U)
min
(
T
S
uint U
)
(
const Vector!(T, U) v
,
const Vector!(S, U) v2
)

Parameters

v Vector!(T, U)

left hand value of calculation

v2 Vector!(S, U)

right hand value of calculation

Return Value

Type: Vector!(CommonType!(T, S), U)

minimum vector of two vectors

Meta