Uses of Class
JSci.maths.DoubleDiagonalMatrix

Packages that use DoubleDiagonalMatrix
JSci.maths   
JSci.util   
 

Uses of DoubleDiagonalMatrix in JSci.maths
 

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

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

Uses of DoubleDiagonalMatrix in JSci.util
 

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