Uses of Interface
jsci.util.array.DoubleArray2D

Packages that use DoubleArray2D
jsci.io   
jsci.maths.linalg   
jsci.maths.matrix   
jsci.maths.matrix.impl   
jsci.util.array   
 

Uses of DoubleArray2D in jsci.io
 

Methods in jsci.io with parameters of type DoubleArray2D
 void TextReader.read(DoubleArray2D array)
           
 void TextReader.readTable(DoubleArray2D array)
           
 void TextWriter.write(DoubleArray2D array)
           
 void TextWriter.writeTable(DoubleArray2D array)
           
 

Uses of DoubleArray2D in jsci.maths.linalg
 

Methods in jsci.maths.linalg that return types with arguments of type DoubleArray2D
 DoubleMatrix<DoubleArray2D,DoubleArray1D> CholeskyDecomposition.getL()
           
 DoubleMatrix<DoubleArray2D,DoubleArray1D> LUDecomposition.getL()
           
 DoubleMatrix<DoubleArray2D,DoubleArray1D> PolarDecomposition.getP()
           
 DoubleMatrix<DoubleArray2D,DoubleArray1D> QRDecomposition.getQ()
           
 DoubleMatrix<DoubleArray2D,DoubleArray1D> QRDecomposition.getR()
           
 DoubleMatrix<DoubleArray2D,DoubleArray1D> SingularValueDecomposition.getS()
           
 DoubleMatrix<DoubleArray2D,DoubleArray1D> CholeskyDecomposition.getU()
           
 DoubleMatrix<DoubleArray2D,DoubleArray1D> LUDecomposition.getU()
           
 DoubleMatrix<DoubleArray2D,DoubleArray1D> PolarDecomposition.getU()
           
 DoubleMatrix<DoubleArray2D,DoubleArray1D> SingularValueDecomposition.getU()
           
 DoubleMatrix<DoubleArray2D,DoubleArray1D> SingularValueDecomposition.getV()
           
 

Methods in jsci.maths.linalg with parameters of type DoubleArray2D
static void EigenDecomposition.diagonalizeSymmetricTridiagonal(DoubleArray2D array, DoubleArray1D offdiag, int start, int end, int maxIters)
          Diagonalizes a symmetric tridiagonal matrix in-place.
static void EigenDecomposition.reduceSymmetricToTridiagonal(DoubleArray2D array, DoubleArray1D offdiag, int start, int end)
          Reduces a symmetric matrix to a tridiagonal matrix in-place.
 

Method parameters in jsci.maths.linalg with type arguments of type DoubleArray2D
 void SingularValueDecomposition.singularValueDecompose(DoubleMatrix<? extends DoubleArray2D,? extends DoubleArray1D> matrix)
          Returns the singular value decomposition of this matrix.
 

Constructor parameters in jsci.maths.linalg with type arguments of type DoubleArray2D
CholeskyDecomposition(DoubleMatrix<? extends DoubleArray2D,? extends DoubleArray1D> matrix)
           
EigenDecomposition(DoubleMatrix<? extends DoubleArray2D,? extends DoubleArray1D> matrix, boolean eigenvectors)
           
EigenDecomposition(DoubleMatrix<? extends DoubleArray2D,? extends DoubleArray1D> matrix, boolean eigenvectors, int maxIters)
           
LUDecomposition(DoubleMatrix<? extends DoubleArray2D,? extends DoubleArray1D> matrix)
           
PolarDecomposition(DoubleMatrix<? extends DoubleArray2D,? extends DoubleArray1D> matrix)
           
QRDecomposition(DoubleMatrix<? extends DoubleArray2D,? extends DoubleArray1D> matrix)
           
SingularValueDecomposition(DoubleMatrix<? extends DoubleArray2D,? extends DoubleArray1D> matrix)
           
 

Uses of DoubleArray2D in jsci.maths.matrix
 

Classes in jsci.maths.matrix with type parameters of type DoubleArray2D
 class DoubleMatrix<E extends DoubleArray2D,F extends DoubleArray1D>
           
 

Methods in jsci.maths.matrix that return types with arguments of type DoubleArray2D
static DoubleMatrix<DoubleArray2D,DoubleArray1D> DoubleMatrix.create(DoubleArray2D array)
           
 

Methods in jsci.maths.matrix with parameters of type DoubleArray2D
static DoubleMatrix<DoubleArray2D,DoubleArray1D> DoubleMatrix.create(DoubleArray2D array)
           
 

Uses of DoubleArray2D in jsci.maths.matrix.impl
 

Classes in jsci.maths.matrix.impl with type parameters of type DoubleArray2D
 class DoubleAlgorithms<E extends DoubleArray2D,F extends DoubleArray1D>
           
 class DoubleAlgorithmsFactory<E extends DoubleArray2D,F extends DoubleArray1D>
           
 

Subinterfaces of DoubleArray2D in jsci.maths.matrix.impl
 interface AlgorithmsDoubleArray2D
           
 

Classes in jsci.maths.matrix.impl that implement DoubleArray2D
 class AlgorithmsDenseDoubleArray2D
           
 class AlgorithmsSparseDoubleArray2D
           
 class AlgorithmsTransposedDoubleArray2D<E extends AlgorithmsDoubleArray2D>
           
 

Uses of DoubleArray2D in jsci.util.array
 

Classes in jsci.util.array with type parameters of type DoubleArray2D
 class TransposedDoubleArray2D<E extends DoubleArray2D>
           
 

Classes in jsci.util.array that implement DoubleArray2D
 class AbstractDoubleArray2D
           
 class DenseDoubleArray2D
           
 class DiagonalDoubleArray2D
           
 class FileDoubleArray2D
          Uses an underlying file as storage.
 class SparseDoubleArray2D
           
 class TransposedDoubleArray2D<E extends DoubleArray2D>
           
 class TridiagonalDoubleArray2D
           
 

Fields in jsci.util.array declared as DoubleArray2D
protected  E TransposedDoubleArray2D.array
           
 

Methods in jsci.util.array that return DoubleArray2D
 DoubleArray2D DoubleArray2D.create(int rows, int cols)
           
 

Methods in jsci.util.array with parameters of type DoubleArray2D
 boolean AbstractDoubleArray2D.contentEquals(DoubleArray2D arr, double tol)