Uses of Class
JSci.maths.DoubleTridiagonalMatrix

Packages that use DoubleTridiagonalMatrix
JSci.maths   
JSci.util   
 

Uses of DoubleTridiagonalMatrix in JSci.maths
 

Subclasses of DoubleTridiagonalMatrix in JSci.maths
 class DoubleDiagonalMatrix
          The DoubleDiagonalMatrix class encapsulates diagonal matrices containing doubles.
 

Methods in JSci.maths that return DoubleTridiagonalMatrix
 DoubleTridiagonalMatrix DoubleDiagonalMatrix.add(DoubleTridiagonalMatrix m)
          Returns the addition of this matrix and another.
 DoubleTridiagonalMatrix DoubleTridiagonalMatrix.add(DoubleTridiagonalMatrix m)
          Returns the addition of this matrix and another.
 DoubleTridiagonalMatrix DoubleDiagonalMatrix.subtract(DoubleTridiagonalMatrix m)
          Returns the subtraction of this matrix and another.
 DoubleTridiagonalMatrix DoubleTridiagonalMatrix.subtract(DoubleTridiagonalMatrix m)
          Returns the subtraction of this matrix and another.
 

Methods in JSci.maths with parameters of type DoubleTridiagonalMatrix
 DoubleTridiagonalMatrix DoubleDiagonalMatrix.add(DoubleTridiagonalMatrix m)
          Returns the addition of this matrix and another.
 DoubleTridiagonalMatrix DoubleTridiagonalMatrix.add(DoubleTridiagonalMatrix m)
          Returns the addition of this matrix and another.
static double[] LinearMath.eigenSolveSymmetric(DoubleTridiagonalMatrix matrix, DoubleVector[] eigenvector)
          This method finds the eigenvalues and eigenvectors of a symmetric tridiagonal matrix by the QL method.
static double[] LinearMath.eigenvalueSolveSymmetric(DoubleTridiagonalMatrix matrix)
          This method finds the eigenvalues of a symmetric tridiagonal matrix by the QL method.
 DoubleSquareMatrix DoubleDiagonalMatrix.multiply(DoubleTridiagonalMatrix m)
          Returns the multiplication of this matrix and another.
 DoubleSquareMatrix DoubleTridiagonalMatrix.multiply(DoubleTridiagonalMatrix m)
          Returns the multiplication of this matrix and another.
 double DoubleDiagonalMatrix.scalarProduct(DoubleTridiagonalMatrix m)
          Returns the scalar product of this matrix and another.
 double DoubleTridiagonalMatrix.scalarProduct(DoubleTridiagonalMatrix m)
          Returns the scalar product of this matrix and another.
 DoubleTridiagonalMatrix DoubleDiagonalMatrix.subtract(DoubleTridiagonalMatrix m)
          Returns the subtraction of this matrix and another.
 DoubleTridiagonalMatrix DoubleTridiagonalMatrix.subtract(DoubleTridiagonalMatrix m)
          Returns the subtraction of this matrix and another.
 

Uses of DoubleTridiagonalMatrix in JSci.util
 

Methods in JSci.util that return DoubleTridiagonalMatrix
static DoubleTridiagonalMatrix MatrixToolkit.randomTridiagonalMatrix(int size)
          Creates a random generated tridiagonal matrix.