Documentation For Encog 2.x

MatrixMath.DotProduct Method

Compute the dot product for two matrixes. Note: both matrixes must be vectors.

public static double DotProduct(
   Matrix a,
   Matrix b
);

Parameters

a
The first matrix, must be a vector.
b
The second matrix, must be a vector.

Return Value

The dot product of the two matrixes.

See Also

MatrixMath Class | Encog.Matrix Namespace