[][src]Function arrayfire::dot

pub fn dot<T>(
    lhs: &Array<T>,
    rhs: &Array<T>,
    optlhs: MatProp,
    optrhs: MatProp
) -> Array<T> where
    T: HasAfEnum + FloatingPoint

Calculate the dot product of vectors.

Scalar dot product between two vectors. Also referred to as the inner product. This function returns the scalar product of two equal sized vectors.

Parameters

Return Values

The result of dot product.