edu.jhu.bme.smile.commons.math.specialFunctions
Class ComplexMatrix

java.lang.Object
  extended by Matrix
      extended by edu.jhu.bme.smile.commons.math.specialFunctions.ComplexMatrix

public class ComplexMatrix
extends Matrix


Constructor Summary
ComplexMatrix(int m, int n)
           
 
Method Summary
 double[][] getImag()
           
 double getImag(int m, int n)
           
 double[][] getReal()
           
 double getReal(int m, int n)
           
 ComplexMatrix inverse()
           
 Matrix safeInverse()
           
 void setComplex(int m, int n, double real, double imag)
           
 ComplexMatrix times(ComplexMatrix B)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ComplexMatrix

public ComplexMatrix(int m,
                     int n)
Method Detail

setComplex

public void setComplex(int m,
                       int n,
                       double real,
                       double imag)

getReal

public double getReal(int m,
                      int n)

getImag

public double getImag(int m,
                      int n)

safeInverse

public Matrix safeInverse()

inverse

public ComplexMatrix inverse()

getReal

public double[][] getReal()

getImag

public double[][] getImag()

times

public ComplexMatrix times(ComplexMatrix B)

toString

public java.lang.String toString()