Search Java Classes and Packages

Search Java Frameworks and Libraries

255581 classes and counting ...
Search Tips Index Status



#Com.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse Classes and Interfaces - 38 results found.
NameDescriptionTypePackageFramework
BiconjugateGradientSolverThe Biconjugate Gradient method (BiCG) is useful for solving non-symmetric n-by-n linear systems.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.nonstationarySuanShu
BiconjugateGradientStabilizedSolverThe Biconjugate Gradient Stabilized (BiCGSTAB) method is useful for solving non-symmetric n-by-n linear systems.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.nonstationarySuanShu
ConjugateGradientNormalErrorSolverFor an under-determined system of linear equations, Ax = b, or when the coefficient matrix A is non-symmetric and nonsingular,Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.nonstationarySuanShu
ConjugateGradientNormalResidualSolverFor an under-determined system of linear equations, Ax = b, or when the coefficient matrix A is non-symmetric and nonsingular,Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.nonstationarySuanShu
ConjugateGradientSolverThe Conjugate Gradient method (CG) is useful for solving a symmetric n-by-n linear system.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.nonstationarySuanShu
ConjugateGradientSquaredSolverThe Conjugate Gradient Squared method (CGS) is useful for solving a non-symmetric n-by-n linear system.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.nonstationarySuanShu
ConvergenceFailureThis exception is thrown by IterativeLinearSystemSolver.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterativeSuanShu
ConvergenceFailure .Reasonthe reasons for the convergence failureThrown when the iterative algorithm fails to proceed during itsClasscom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterativeSuanShu
CSRSparseMatrixThe Compressed Sparse Row (CSR) format for sparse matrix has this representation: (value, col_ind, row_ptr).Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparseSuanShu
DOKSparseMatrixThe Dictionary Of Key (DOK) format for sparse matrix uses the coordinates of non-zero entries in the matrix as keys.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparseSuanShu
GaussSeidelSolverSimilar to the Jacobi method, the Gauss-Seidel method (GS) solves each equation in sequential order.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.stationarySuanShu
GeneralizedConjugateResidualSolverThe Generalized Conjugate Residual method (GCR) is useful for solving a non-symmetric n-by-n linear system.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.nonstationarySuanShu
GeneralizedMinimalResidualSolverThe Generalized Minimal Residual method (GMRES) is useful for solving a non-symmetric n-by-n linear system.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.nonstationarySuanShu
IdentityPreconditionerThis identity preconditioner is used when no preconditioning is applied.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.preconditionerSuanShu
IterativeLinearSystemSolverAn iterative method for solving an N-by-N (or non-square) linear system Ax = b involves a sequence of matrix-vector multiplications.Interfacecom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterativeSuanShu
IterativeLinearSystemSolver .SolutionThis is the solution to a system of linear equations using an iterativeSearch for a solution that optimizes the objective function from theInterfacecom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterativeSuanShu
JacobiPreconditionerThe Jacobi (or diagonal) preconditioner is one of the simplest forms of preconditioning, such that the preconditioner is the diagonal ofClasscom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.preconditionerSuanShu
JacobiSolverThe Jacobi method solves sequentially n equations in a linear system Ax = b in isolation in each iteration.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.stationarySuanShu
LILSparseMatrixThe list of lists (LIL) format for sparse matrix stores one list per row, where each entry stores a column index and value.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparseSuanShu
MatrixCoordinateThe location of a matrix entry is specified by a 2D coordinates (i, j), where i and j are the row-index and column-index of the entry respectively.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparseSuanShu
MinimalResidualSolverThe Minimal Residual method (MINRES) is useful for solving a symmetric n-by-n linear system (possibly indefinite or singular).Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.nonstationarySuanShu
PreconditionerPreconditioning reduces the condition number of the coefficient matrix of a linear system to accelerate the convergenceInterfacecom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.preconditionerSuanShu
PreconditionerFactoryThis constructs a new instance of Preconditioner for a coefficient matrix.Interfacecom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.preconditionerSuanShu
QuasiMinimalResidualSolverThe Quasi-Minimal Residual method (QMR) is useful for solving a non-symmetric n-by-n linear system.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.nonstationarySuanShu
SORSweepThis is a building block for to perform the forward or backward sweep.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.stationarySuanShu
SparseMatrixA sparse matrix stores only non-zero values.Interfacecom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparseSuanShu
SparseMatrix .EntryThis is a (non-zero) entry in a sparse matrix.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparseSuanShu
SparseMatrix .Entry .TopLeftFirstComparatorThis Comparator sorts the matrix coordinates first from top to bottom (rows), and then from left to right (columns).Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparseSuanShu
SparseMatrixUtilsThese are the utility functions for SparseMatrix.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparseSuanShu
SparseStructureThis interface defines common operations on sparse structures such as sparse vector or sparse matrix.Interfacecom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparseSuanShu
SparseVectorA sparse vector stores only non-zero values.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparseSuanShu
SparseVector .EntryThis is an entry in a SparseVector.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparseSuanShu
SparseVector .Entry .ComparatorThis Comparator sorts the matrix coordinates first from top to bottom (rows), and then from left to right (columns).Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparseSuanShu
SparseVector .IteratorThis wrapper class overrides the Iterator.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparseSuanShu
SSORPreconditionerSSOR preconditioner is derived from a symmetric coefficient matrix A which is decomposed asClasscom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.preconditionerSuanShu
SteepestDescentSolverThe Steepest Descent method (SDM) solves a symmetric n-by-n linear system.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.nonstationarySuanShu
SuccessiveOverrelaxationSolverThe Successive Overrelaxation method (SOR), is devised by applying extrapolation to the Gauss-Seidel method.Classcom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.stationarySuanShu
SymmetricSuccessiveOverrelaxationSolverThe Symmetric Successive Overrelaxation method (SSOR) is like SOR, but it performs in eachClasscom.numericalmethod.suanshu.algebra.linear.matrix.doubles.matrixtype.sparse.solver.iterative.stationarySuanShu