Class ParMultProcTrans

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

public class ParMultProcTrans
extends java.lang.Object
implements MMInf

Parallel Matrix Multiplication. Using specified number of threads, matrix B is transposed.

Author:
Heinz Kredel.

Field Summary
(package private)  int anzahl
           
 
Constructor Summary
ParMultProcTrans(int threads)
           
 
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

anzahl

int anzahl
Constructor Detail

ParMultProcTrans

public ParMultProcTrans(int threads)
Method Detail

multiply

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

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