001 /**
002 * Matrix Multiplication Interface.
003 * @author Heinz Kredel.
004 */
005
006 public interface MMInf {
007
008 /**
009 * Performs the multiplication of two matrices.
010 * @param C result matrix.
011 * @param A left matrix to multiply.
012 * @param B right matirx to multiply.
013 */
014 public void multiply(double[][] C, double[][] A, double[][] B);
015
016 }