Uses of Class
JSci.maths.IntegerVector

Packages that use IntegerVector
JSci.io   
JSci.maths   
 

Uses of IntegerVector in JSci.io
 

Methods in JSci.io with parameters of type IntegerVector
 org.w3c.dom.Element MathMLDocumentJSciImpl.createVector(IntegerVector v)
          Creates a MathML vector element (<vector>).
 

Uses of IntegerVector in JSci.maths
 

Subclasses of IntegerVector in JSci.maths
 class Integer3Vector
          The Integer3Vector class encapsulates integer 3-vectors.
 

Methods in JSci.maths that return IntegerVector
 IntegerVector IntegerVector.add(IntegerVector v)
          Returns the addition of this vector and another.
 IntegerVector IntegerTridiagonalMatrix.multiply(IntegerVector v)
          Returns the multiplication of a vector by this matrix.
 IntegerVector IntegerSquareMatrix.multiply(IntegerVector v)
          Returns the multiplication of a vector by this matrix.
 IntegerVector IntegerDiagonalMatrix.multiply(IntegerVector v)
          Returns the multiplication of a vector by this matrix.
 IntegerVector IntegerMatrix.multiply(IntegerVector v)
          Returns the multiplication of a vector by this matrix.
 IntegerVector Integer3Vector.scalarMultiply(int x)
          Returns the multiplication of this vector by a scalar.
 IntegerVector IntegerVector.scalarMultiply(int x)
          Returns the multiplication of this vector by a scalar.
 IntegerVector IntegerVector.subtract(IntegerVector v)
          Returns the subtraction of this vector by another.
 IntegerVector DoubleVector.toIntegerVector()
          Converts this vector to an integer vector.
 IntegerVector Double3Vector.toIntegerVector()
          Converts this 3-vector to an integer 3-vector.
 

Methods in JSci.maths with parameters of type IntegerVector
 ComplexVector ComplexVector.add(IntegerVector v)
          Returns the addition of this vector and another.
 IntegerVector IntegerVector.add(IntegerVector v)
          Returns the addition of this vector and another.
 IntegerVector IntegerTridiagonalMatrix.multiply(IntegerVector v)
          Returns the multiplication of a vector by this matrix.
 IntegerVector IntegerSquareMatrix.multiply(IntegerVector v)
          Returns the multiplication of a vector by this matrix.
 IntegerVector IntegerDiagonalMatrix.multiply(IntegerVector v)
          Returns the multiplication of a vector by this matrix.
 IntegerVector IntegerMatrix.multiply(IntegerVector v)
          Returns the multiplication of a vector by this matrix.
 int IntegerVector.scalarProduct(IntegerVector v)
          Returns the scalar product of this vector and another.
 ComplexVector ComplexVector.subtract(IntegerVector v)
          Returns the subtraction of this vector by another.
 IntegerVector IntegerVector.subtract(IntegerVector v)
          Returns the subtraction of this vector by another.
 

Constructors in JSci.maths with parameters of type IntegerVector
IntegerMatrix(IntegerVector[] array)
          Constructs a matrix from an array of vectors (columns).
IntegerSquareMatrix(IntegerVector[] array)
          Constructs a matrix from an array of vectors.