dot#

static vectorious.dot(x, y)#

Performs dot multiplication with x and y. Accelerated with BLAS ?dot.

Arguments:
Returns:

Number

Examples:

import { dot } from 'vectorious/core/dot';

dot([1, 2, 3], [4, 5, 6]); // => 32