Package | Description |
---|---|
cern.colt.matrix |
Matrix interfaces and factories; efficient and flexible dense and sparse
1, 2, 3-dimensional matrices holding objects or primitive data types such
as int, double, etc; Templated, fixed sized (not dynamically
resizable); Also known as multi-dimensional arrays or Data Cubes.
|
cern.colt.matrix.tdouble.algo |
Linear Algebraic matrix computations operating on
DoubleMatrix2D
and DoubleMatrix1D . |
cern.colt.matrix.tdouble.algo.solver |
Iterative solvers
BiCG - BiConjugate gradients.
BiCGstab - BiConjugate gradients stabilized.
CG - Conjugate gradients.
CGS - Conjugate gradients squared.
Chebyshev - The Chebyshev iteration for symmetrical, positive definite matrices.
GMRES - Generalized minimal residual using restart.
IR - Iterative refinement (Richardson's method).
QMR - Quasi-minimal residual.
HyBR - Hybrid Bidiagonalization Regularization.
MRNSD - Modified Residual Norm Steepest Descent.
CGLS - Conjugate Gradient for Least Squares.
|
cern.colt.matrix.tfloat.algo |
Linear Algebraic matrix computations operating on
FloatMatrix2D
and FloatMatrix1D . |
cern.colt.matrix.tfloat.algo.solver |
Iterative solvers
BiCG - BiConjugate gradients.
BiCGstab - BiConjugate gradients stabilized.
CG - Conjugate gradients.
CGS - Conjugate gradients squared.
Chebyshev - The Chebyshev iteration for symmetrical, positive definite matrices.
GMRES - Generalized minimal residual using restart.
IR - Iterative refinement (Richardson's method).
QMR - Quasi-minimal residual.
HyBR - Hybrid Bidiagonalization Regularization.
MRNSD - Modified Residual Norm Steepest Descent.
CGLS - Conjugate Gradient for Least Squares.
|
Modifier and Type | Method and Description |
---|---|
static Norm |
Norm.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Norm[] |
Norm.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
double |
DenseDoubleAlgebra.norm(DoubleMatrix1D x,
Norm type) |
double |
DenseDoubleAlgebra.norm(DoubleMatrix2D A,
Norm type) |
Modifier and Type | Method and Description |
---|---|
Norm |
AbstractDoubleIterationMonitor.getNormType() |
Norm |
DoubleIterationMonitor.getNormType()
Returns the vector-norm in use
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractDoubleIterationMonitor.setNormType(Norm normType) |
void |
DoubleIterationMonitor.setNormType(Norm normType)
Sets the vector-norm to calculate with
|
Modifier and Type | Method and Description |
---|---|
float |
DenseFloatAlgebra.norm(FloatMatrix1D x,
Norm type) |
float |
DenseFloatAlgebra.norm(FloatMatrix2D A,
Norm type) |
Modifier and Type | Method and Description |
---|---|
Norm |
AbstractFloatIterationMonitor.getNormType() |
Norm |
FloatIterationMonitor.getNormType()
Returns the vector-norm in use
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractFloatIterationMonitor.setNormType(Norm normType) |
void |
FloatIterationMonitor.setNormType(Norm normType)
Sets the vector-norm to calculate with
|
Jump to the Parallel Colt Homepage