Class SeqMult3

java.lang.Object
  extended by SeqMult3
All Implemented Interfaces:
MMInf

public class SeqMult3
extends java.lang.Object
implements MMInf

Sequential Matrix Multiplication. Sequential algorithm, interchanged outer loops.

Author:
Heinz Kredel.

Constructor Summary
SeqMult3()
           
 
Method Summary
 void multiply(double[][] C, double[][] A, double[][] B)
          Performs the multiplication of two matrices.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SeqMult3

public SeqMult3()
Method Detail

multiply

public void multiply(double[][] C,
                     double[][] A,
                     double[][] B)
Performs the multiplication of two matrices. C = A * B.

Specified by:
multiply in interface MMInf
Parameters:
C - result matrix.
A - matrix.
B - matrix.