h. ( u v -- x )


Vocabulary
math.vectors

Inputs and outputs
ua sequence of real numbers
va sequence of real numbers
xa real number


Word description
Computes the Hermitian inner product of two vectors.

Definition
IN: math.vectors

GENERIC: h. ( u v -- x )


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

M: object h. [ conjugate * ] [ + ] 2map-reduce ; inline