Class SeqMultBlockTrans

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

public class SeqMultBlockTrans
extends java.lang.Object
implements MMInf

Sequential Matrix Multiplication. Sequential algorithm, generating product matrix in blocks. matrix B transposed.

Author:
Heinz Kredel.

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

Field Detail

blocksize

int blocksize
Constructor Detail

SeqMultBlockTrans

public SeqMultBlockTrans(int size)
Method Detail

multiply

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

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