Class InnerProduct
- java.lang.Object
-
- dev.nm.algebra.linear.matrix.doubles.operation.InnerProduct
-
public class InnerProduct extends Object
The Frobenius inner product is the component-wise inner product of two matrices as though they are vectors. In other words, it is the sum of the entries of the Hadamard product, that is,A : B = trace(A'B) = trace(AB');
- See Also:
- Wikipedia: Frobenius inner product
-
-
Constructor Summary
Constructors Constructor Description InnerProduct(Matrix A, Matrix B)
Compute the inner product of two matrices.
-