[v-] ( u v -- w )


Vocabulary
math.vectors

Inputs and outputs
ua sequence of real numbers
va sequence of real numbers
wa sequence of real numbers


Word description
Subtracts v from u component-wise; any components which become negative are set to zero.

Definition
IN: math.vectors

GENERIC: [v-] ( u v -- w )


Methods
USING: kernel math.order math.vectors sequences ;

M: object [v-] [ [-] ] 2map ; inline