Uses of Class
JSci.maths.IntegerMatrix

Packages that use IntegerMatrix
JSci.io   
JSci.maths   
 

Uses of IntegerMatrix in JSci.io
 

Methods in JSci.io with parameters of type IntegerMatrix
 org.w3c.dom.Element MathMLDocumentJSciImpl.createMatrix(IntegerMatrix m)
          Creates a MathML matrix element (<matrix>).
 void TextWriter.write(IntegerMatrix matrix)
          Writes a matrix.
 

Uses of IntegerMatrix in JSci.maths
 

Subclasses of IntegerMatrix in JSci.maths
 class IntegerDiagonalMatrix
          The IntegerDiagonalMatrix class provides an object for encapsulating diagonal matrices containing integers.
 class IntegerSquareMatrix
          The IntegerSquareMatrix class provides an object for encapsulating square matrices containing integers.
 class IntegerTridiagonalMatrix
          The IntegerTridiagonalMatrix class provides an object for encapsulating tridiagonal matrices containing integers.
 

Methods in JSci.maths that return IntegerMatrix
 IntegerMatrix IntegerTridiagonalMatrix.add(IntegerMatrix m)
          Returns the addition of this matrix and another.
 IntegerMatrix IntegerSquareMatrix.add(IntegerMatrix m)
          Returns the addition of this matrix and another.
 IntegerMatrix IntegerDiagonalMatrix.add(IntegerMatrix m)
          Returns the addition of this matrix and another.
 IntegerMatrix IntegerMatrix.add(IntegerMatrix m)
          Returns the addition of this matrix and another.
 IntegerMatrix IntegerTridiagonalMatrix.multiply(IntegerMatrix m)
          Returns the multiplication of this matrix and another.
 IntegerMatrix IntegerDiagonalMatrix.multiply(IntegerMatrix m)
          Returns the multiplication of this matrix and another.
 IntegerMatrix IntegerMatrix.multiply(IntegerMatrix m)
          Returns the multiplication of this matrix and another.
 IntegerMatrix IntegerTridiagonalMatrix.scalarMultiply(int x)
          Returns the multiplication of this matrix by a scalar.
 IntegerMatrix IntegerSquareMatrix.scalarMultiply(int x)
          Returns the multiplication of this matrix by a scalar.
 IntegerMatrix IntegerDiagonalMatrix.scalarMultiply(int x)
          Returns the multiplication of this matrix by a scalar.
 IntegerMatrix IntegerMatrix.scalarMultiply(int x)
          Returns the multiplication of this matrix by a scalar.
 IntegerMatrix IntegerTridiagonalMatrix.subtract(IntegerMatrix m)
          Returns the subtraction of this matrix and another.
 IntegerMatrix IntegerSquareMatrix.subtract(IntegerMatrix m)
          Returns the subtraction of this matrix by another.
 IntegerMatrix IntegerDiagonalMatrix.subtract(IntegerMatrix m)
          Returns the subtraction of this matrix and another.
 IntegerMatrix IntegerMatrix.subtract(IntegerMatrix m)
          Returns the subtraction of this matrix by another.
 IntegerMatrix DoubleSparseMatrix.toIntegerMatrix()
          Converts this matrix to an integer matrix.
 IntegerMatrix DoubleSparseSquareMatrix.toIntegerMatrix()
          Converts this matrix to an integer matrix.
 IntegerMatrix DoubleMatrix.toIntegerMatrix()
          Converts this matrix to an integer matrix.
 IntegerMatrix DoubleDiagonalMatrix.toIntegerMatrix()
          Converts this matrix to an integer matrix.
 IntegerMatrix DoubleTridiagonalMatrix.toIntegerMatrix()
          Converts this matrix to an integer matrix.
 

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