java.lang.Object
dk.jonaslindstrom.ruffini.common.matrices.algorithms.MatrixMultiplication<E>
- All Implemented Interfaces:
java.util.function.BiFunction<Matrix<E>,Matrix<E>,Matrix<E>>
, java.util.function.BinaryOperator<Matrix<E>>
public class MatrixMultiplication<E>
extends Object
implements java.util.function.BinaryOperator<Matrix<E>>
This function computes the product of two matrices.
-
Constructor Summary
Constructors
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.function.BiFunction
andThen
-
Constructor Details
-
MatrixMultiplication
public MatrixMultiplication(Ring<E> ring)
-
MatrixMultiplication
public MatrixMultiplication(java.util.function.BiFunction<Vector<E>,Vector<E>,E> dotProduct)
-