Uses of Class
JSci.maths.ComplexDiagonalMatrix

Packages that use ComplexDiagonalMatrix
JSci.maths   
JSci.util   
 

Uses of ComplexDiagonalMatrix in JSci.maths
 

Methods in JSci.maths that return ComplexDiagonalMatrix
 ComplexDiagonalMatrix ComplexDiagonalMatrix.add(ComplexDiagonalMatrix m)
          Returns the addition of this matrix and another.
static ComplexDiagonalMatrix ComplexDiagonalMatrix.identity(int size)
          Creates an identity matrix.
 ComplexDiagonalMatrix ComplexDiagonalMatrix.multiply(ComplexDiagonalMatrix m)
          Returns the multiplication of this matrix and another.
 ComplexDiagonalMatrix ComplexDiagonalMatrix.subtract(ComplexDiagonalMatrix m)
          Returns the subtraction of this matrix by another.
 

Methods in JSci.maths with parameters of type ComplexDiagonalMatrix
 ComplexDiagonalMatrix ComplexDiagonalMatrix.add(ComplexDiagonalMatrix m)
          Returns the addition of this matrix and another.
 ComplexDiagonalMatrix ComplexDiagonalMatrix.multiply(ComplexDiagonalMatrix m)
          Returns the multiplication of this matrix and another.
 ComplexDiagonalMatrix ComplexDiagonalMatrix.subtract(ComplexDiagonalMatrix m)
          Returns the subtraction of this matrix by another.
 

Uses of ComplexDiagonalMatrix in JSci.util
 

Methods in JSci.util that return ComplexDiagonalMatrix
static ComplexDiagonalMatrix MatrixToolkit.randomComplexDiagonalMatrix(int size)
          Creates a random generated diagonal matrix.