vmin ( u v -- w )
Factor handbook » The language » Numbers » Vector operations » Vector component- and bit-wise logic

Prev:vmax ( u v -- w )
Next:vclamp ( v min max -- w )


Vocabulary
math.vectors

Inputs
ua sequence of reals
va sequence of reals


Outputs
wa sequence of reals


Word description
Creates a sequence where each element is the minimum of the corresponding elements from u and v.

Examples
USING: math.vectors prettyprint ; { 1 2 5 } { -7 6 3 } vmin .
{ -7 2 3 }


Definition


Methods