Uses of Interface
jsci.util.array.DoubleArray1D

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

Uses of DoubleArray1D in jsci.io
 

Methods in jsci.io with parameters of type DoubleArray1D
 void TextWriter.writeColumn(DoubleArray1D array)
           
 void TextWriter.writeRow(DoubleArray1D array)
           
 

Uses of DoubleArray1D in jsci.maths.linalg
 

Methods in jsci.maths.linalg that return types with arguments of type DoubleArray1D
 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 DoubleArray1D
static void EigenDecomposition.diagonalizeSymmetricTridiagonal(DoubleArray2D array, DoubleArray1D offdiag, int start, int end, int maxIters)
          Diagonalizes a symmetric tridiagonal matrix in-place.
 void EigenDecomposition.Algorithms.eigenvalueIteration(int i, DoubleArray1D offdiag, int maxIters)
           
static void EigenDecomposition.reduceSymmetricToTridiagonal(DoubleArray2D array, DoubleArray1D offdiag, int start, int end)
          Reduces a symmetric matrix to a tridiagonal matrix in-place.
 void EigenDecomposition.Algorithms.reductionIteration(int i, DoubleArray1D offdiag)
           
 

Method parameters in jsci.maths.linalg with type arguments of type DoubleArray1D
 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 DoubleArray1D
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 DoubleArray1D in jsci.maths.matrix
 

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

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

Uses of DoubleArray1D in jsci.maths.matrix.impl
 

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

Methods in jsci.maths.matrix.impl with parameters of type DoubleArray1D
 void AlgorithmsDenseDoubleArray2D.eigenvalueIteration(int l, DoubleArray1D offdiag, int maxIters)
           
 void AlgorithmsSparseDoubleArray2D.eigenvalueIteration(int l, DoubleArray1D offdiag, int maxIters)
           
 void AlgorithmsDenseDoubleArray2D.reductionIteration(int i, DoubleArray1D offdiag)
           
 void AlgorithmsSparseDoubleArray2D.reductionIteration(int i, DoubleArray1D offdiag)
           
 

Uses of DoubleArray1D in jsci.maths.vector
 

Classes in jsci.maths.vector with type parameters of type DoubleArray1D
 class DoubleVector<E extends DoubleArray1D>
           
 

Uses of DoubleArray1D in jsci.maths.vector.impl
 

Classes in jsci.maths.vector.impl with type parameters of type DoubleArray1D
 class DoubleAlgorithms<E extends DoubleArray1D>
           
 class DoubleAlgorithmsFactory<E extends DoubleArray1D>
           
 

Subinterfaces of DoubleArray1D in jsci.maths.vector.impl
 interface AlgorithmsDoubleArray1D
           
 

Classes in jsci.maths.vector.impl that implement DoubleArray1D
 class AlgorithmsDenseDoubleArray1D
           
 

Uses of DoubleArray1D in jsci.util.array
 

Classes in jsci.util.array that implement DoubleArray1D
 class AbstractDoubleArray1D
           
 class DenseDoubleArray1D
           
 class SparseDoubleArray1D
           
 

Methods in jsci.util.array that return DoubleArray1D
 DoubleArray1D DoubleArray1D.create(int size)
           
 

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

Constructors in jsci.util.array with parameters of type DoubleArray1D
DiagonalDoubleArray2D(DoubleArray1D array)