Uses of Interface
org.ojalgo.structure.Structure2D
-
-
Uses of Structure2D in org.ojalgo
Methods in org.ojalgo with parameters of type Structure2D Modifier and Type Method Description static void
ProgrammingError. throwIfNotEqualRowDimensions(Structure2D mtrx1, Structure1D mtrx2)
static void
ProgrammingError. throwIfNotSquare(Structure2D mtrx)
-
Uses of Structure2D in org.ojalgo.ann
Methods in org.ojalgo.ann that return Structure2D Modifier and Type Method Description (package private) Structure2D
CalculationLayer. getStructure()
Structure2D[]
ArtificialNeuralNetwork. structure()
Structure2D[]
NetworkTrainer. structure()
(package private) Structure2D[]
WrappedANN. structure()
-
Uses of Structure2D in org.ojalgo.array
Classes in org.ojalgo.array that implement Structure2D Modifier and Type Class Description class
Array2D<N extends java.lang.Comparable<N>>
Array2D -
Uses of Structure2D in org.ojalgo.data
Classes in org.ojalgo.data that implement Structure2D Modifier and Type Class Description class
DataBatch
A reusable data batch. -
Uses of Structure2D in org.ojalgo.data.image
Classes in org.ojalgo.data.image that implement Structure2D Modifier and Type Class Description class
ImageData
Treats an image as a matrix.(package private) static class
ImageData.SingleChannel
Methods in org.ojalgo.data.image with parameters of type Structure2D Modifier and Type Method Description static ImageData
ImageData. newColour(Structure2D shape)
static ImageData
ImageData. newGreyScale(Structure2D shape)
-
Uses of Structure2D in org.ojalgo.matrix
Subinterfaces of Structure2D in org.ojalgo.matrix Modifier and Type Interface Description interface
Matrix2D<N extends java.lang.Comparable<N>,M extends Matrix2D<N,M>>
Definition of what's common toBasicMatrix
andMatrixStore
.Classes in org.ojalgo.matrix that implement Structure2D Modifier and Type Class Description class
BasicMatrix<N extends java.lang.Comparable<N>,M extends BasicMatrix<N,M>>
A base class for, easy to use, immutable (thread safe) matrices with a rich feature set.(package private) class
DenseMutator2D<N extends java.lang.Comparable<N>,M extends BasicMatrix<N,M>>
class
MatrixC128
A matrix (linear algebra) with ComplexNumberSet.C
elements, implemented using dual 64-bit double values.static class
MatrixC128.DenseReceiver
static class
MatrixC128.SparseReceiver
class
MatrixH256
A matrix (linear algebra) with QuaternionNumberSet.H
elements, implemented using four 64-bit double values.static class
MatrixH256.DenseReceiver
static class
MatrixH256.SparseReceiver
class
MatrixQ128
A matrix (linear algebra) with RationalNumberSet.Q
elements, implemented using dual 64-bit long values.static class
MatrixQ128.DenseReceiver
static class
MatrixQ128.SparseReceiver
class
MatrixR032
A matrix (linear algebra) with RealNumberSet.R
elements, approximated by 32-bit float.static class
MatrixR032.DenseReceiver
static class
MatrixR032.SparseReceiver
class
MatrixR064
A matrix (linear algebra) with RealNumberSet.R
elements, approximated by 64-bit double.static class
MatrixR064.DenseReceiver
static class
MatrixR064.SparseReceiver
class
MatrixR128
A matrix (linear algebra) with RealNumberSet.R
elements, approximated by 128-bit floating-point values (implemented using dual 64-bit double).static class
MatrixR128.DenseReceiver
static class
MatrixR128.SparseReceiver
(package private) class
SparseMutator2D<N extends java.lang.Comparable<N>,M extends BasicMatrix<N,M>>
Methods in org.ojalgo.matrix with parameters of type Structure2D Modifier and Type Method Description M
MatrixFactory. makeEye(Structure2D shape)
(package private) abstract Cholesky<N>
BasicMatrix. newCholesky(Structure2D typical)
(package private) Cholesky<ComplexNumber>
MatrixC128. newCholesky(Structure2D typical)
(package private) Cholesky<Quaternion>
MatrixH256. newCholesky(Structure2D typical)
(package private) Cholesky<RationalNumber>
MatrixQ128. newCholesky(Structure2D typical)
(package private) Cholesky<java.lang.Double>
MatrixR032. newCholesky(Structure2D typical)
(package private) Cholesky<java.lang.Double>
MatrixR064. newCholesky(Structure2D typical)
(package private) Cholesky<Quadruple>
MatrixR128. newCholesky(Structure2D typical)
(package private) abstract DeterminantTask<N>
BasicMatrix. newDeterminantTask(Structure2D template)
(package private) DeterminantTask<ComplexNumber>
MatrixC128. newDeterminantTask(Structure2D template)
(package private) DeterminantTask<Quaternion>
MatrixH256. newDeterminantTask(Structure2D template)
(package private) DeterminantTask<RationalNumber>
MatrixQ128. newDeterminantTask(Structure2D template)
(package private) DeterminantTask<java.lang.Double>
MatrixR032. newDeterminantTask(Structure2D template)
(package private) DeterminantTask<java.lang.Double>
MatrixR064. newDeterminantTask(Structure2D template)
(package private) DeterminantTask<Quadruple>
MatrixR128. newDeterminantTask(Structure2D template)
(package private) abstract Eigenvalue<N>
BasicMatrix. newEigenvalue(Structure2D typical)
(package private) Eigenvalue<ComplexNumber>
MatrixC128. newEigenvalue(Structure2D typical)
(package private) Eigenvalue<Quaternion>
MatrixH256. newEigenvalue(Structure2D typical)
(package private) Eigenvalue<RationalNumber>
MatrixQ128. newEigenvalue(Structure2D typical)
(package private) Eigenvalue<java.lang.Double>
MatrixR032. newEigenvalue(Structure2D typical)
(package private) Eigenvalue<java.lang.Double>
MatrixR064. newEigenvalue(Structure2D typical)
(package private) Eigenvalue<Quadruple>
MatrixR128. newEigenvalue(Structure2D typical)
(package private) abstract InverterTask<N>
BasicMatrix. newInverterTask(Structure2D template)
(package private) InverterTask<ComplexNumber>
MatrixC128. newInverterTask(Structure2D base)
(package private) InverterTask<Quaternion>
MatrixH256. newInverterTask(Structure2D template)
(package private) InverterTask<RationalNumber>
MatrixQ128. newInverterTask(Structure2D template)
(package private) InverterTask<java.lang.Double>
MatrixR032. newInverterTask(Structure2D base)
(package private) InverterTask<java.lang.Double>
MatrixR064. newInverterTask(Structure2D base)
(package private) InverterTask<Quadruple>
MatrixR128. newInverterTask(Structure2D template)
(package private) abstract LDL<N>
BasicMatrix. newLDL(Structure2D typical)
(package private) LDL<ComplexNumber>
MatrixC128. newLDL(Structure2D typical)
(package private) LDL<Quaternion>
MatrixH256. newLDL(Structure2D typical)
(package private) LDL<RationalNumber>
MatrixQ128. newLDL(Structure2D typical)
(package private) LDL<java.lang.Double>
MatrixR032. newLDL(Structure2D typical)
(package private) LDL<java.lang.Double>
MatrixR064. newLDL(Structure2D typical)
(package private) LDL<Quadruple>
MatrixR128. newLDL(Structure2D typical)
(package private) LDU<N>
BasicMatrix. newLDU(Structure2D typical)
(package private) abstract LU<N>
BasicMatrix. newLU(Structure2D typical)
(package private) LU<ComplexNumber>
MatrixC128. newLU(Structure2D typical)
(package private) LU<Quaternion>
MatrixH256. newLU(Structure2D typical)
(package private) LU<RationalNumber>
MatrixQ128. newLU(Structure2D typical)
(package private) LU<java.lang.Double>
MatrixR032. newLU(Structure2D typical)
(package private) LU<java.lang.Double>
MatrixR064. newLU(Structure2D typical)
(package private) LU<Quadruple>
MatrixR128. newLU(Structure2D typical)
(package private) abstract QR<N>
BasicMatrix. newQR(Structure2D typical)
(package private) QR<ComplexNumber>
MatrixC128. newQR(Structure2D typical)
(package private) QR<Quaternion>
MatrixH256. newQR(Structure2D typical)
(package private) QR<RationalNumber>
MatrixQ128. newQR(Structure2D typical)
(package private) QR<java.lang.Double>
MatrixR032. newQR(Structure2D typical)
(package private) QR<java.lang.Double>
MatrixR064. newQR(Structure2D typical)
(package private) QR<Quadruple>
MatrixR128. newQR(Structure2D typical)
(package private) abstract SingularValue<N>
BasicMatrix. newSingularValue(Structure2D typical)
(package private) SingularValue<ComplexNumber>
MatrixC128. newSingularValue(Structure2D typical)
(package private) SingularValue<Quaternion>
MatrixH256. newSingularValue(Structure2D typical)
(package private) SingularValue<RationalNumber>
MatrixQ128. newSingularValue(Structure2D typical)
(package private) SingularValue<java.lang.Double>
MatrixR032. newSingularValue(Structure2D typical)
(package private) SingularValue<java.lang.Double>
MatrixR064. newSingularValue(Structure2D typical)
(package private) SingularValue<Quadruple>
MatrixR128. newSingularValue(Structure2D typical)
(package private) abstract SolverTask<N>
BasicMatrix. newSolverTask(Structure2D templateBody, Structure2D templateRHS)
(package private) SolverTask<ComplexNumber>
MatrixC128. newSolverTask(Structure2D templateBody, Structure2D templateRHS)
(package private) SolverTask<Quaternion>
MatrixH256. newSolverTask(Structure2D templateBody, Structure2D templateRHS)
(package private) SolverTask<RationalNumber>
MatrixQ128. newSolverTask(Structure2D templateBody, Structure2D templateRHS)
(package private) SolverTask<java.lang.Double>
MatrixR032. newSolverTask(Structure2D templateBody, Structure2D templateRHS)
(package private) SolverTask<java.lang.Double>
MatrixR064. newSolverTask(Structure2D templateBody, Structure2D templateRHS)
(package private) SolverTask<Quadruple>
MatrixR128. newSolverTask(Structure2D templateBody, Structure2D templateRHS)
-
Uses of Structure2D in org.ojalgo.matrix.decomposition
Subinterfaces of Structure2D in org.ojalgo.matrix.decomposition Modifier and Type Interface Description interface
Bidiagonal<N extends java.lang.Comparable<N>>
A general matrix [A] can be factorized by similarity transformations into the form [A]=[LQ][D][RQ] -1 where: [A] (m-by-n) is any, real or complex, matrix [D] (r-by-r) or (m-by-n) is, upper or lower, bidiagonal [LQ] (m-by-r) or (m-by-m) is orthogonal [RQ] (n-by-r) or (n-by-n) is orthogonal r = min(m,n)interface
Cholesky<N extends java.lang.Comparable<N>>
Cholesky: [A] = [L][L]H (or [R]H[R])interface
DecompositionStore<N extends java.lang.Comparable<N>>
Only classes that will act as a delegate to a MatrixDecomposition implementation from this package should implement this interface.interface
Eigenvalue<N extends java.lang.Comparable<N>>
[A] = [V][D][V]-1 ([A][V] = [V][D]) [A] = any square matrix. [V] = contains the eigenvectors as columns. [D] = a diagonal matrix with the eigenvalues on the diagonal (possibly in blocks).static interface
Eigenvalue.Generalised<N extends java.lang.Comparable<N>>
interface
Hessenberg<N extends java.lang.Comparable<N>>
Hessenberg: [A] = [Q][H][Q]T A general square matrix [A] can be decomposed by orthogonal similarity transformations into the form [A]=[Q][H][Q]T where [H] is upper (or lower) hessenberg matrix [Q] is orthogonal/unitaryinterface
LDL<N extends java.lang.Comparable<N>>
LDL: [A] = [L][D][L]H (or [R]H[D][R])interface
LDU<N extends java.lang.Comparable<N>>
LDU: [A] = [L][D][U] ( [PL][L][D][U][PU] )interface
LU<N extends java.lang.Comparable<N>>
LU: [A] = [L][U]interface
MatrixDecomposition<N extends java.lang.Comparable<N>>
Notation used to describe the various matrix decompositions: [A] could be any matrix.static interface
MatrixDecomposition.Determinant<N extends java.lang.Comparable<N>>
static interface
MatrixDecomposition.EconomySize<N extends java.lang.Comparable<N>>
Several matrix decompositions can be expressed "economy sized" - some rows or columns of the decomposed matrix parts are not needed for the most releveant use cases, and can therefore be left out.static interface
MatrixDecomposition.Hermitian<N extends java.lang.Comparable<N>>
Some matrix decompositions are only available with hermitian (symmetric) matrices or different decomposition algorithms could be used depending on if the matrix is hemitian or not.static interface
MatrixDecomposition.Ordered<N extends java.lang.Comparable<N>>
static interface
MatrixDecomposition.Pivoting<N extends java.lang.Comparable<N>>
The pivot or pivot element is the element of a matrix, or an array, which is selected first by an algorithm (e.g.static interface
MatrixDecomposition.RankRevealing<N extends java.lang.Comparable<N>>
A rank-revealing matrix decomposition of a matrix [A] is a decomposition that is, or can be transformed to be, on the form [A]=[X][D][Y]T where: [X] and [Y] are square and well conditioned. [D] is diagonal with nonnegative and non-increasing values on the diagonal.static interface
MatrixDecomposition.Solver<N extends java.lang.Comparable<N>>
static interface
MatrixDecomposition.Values<N extends java.lang.Comparable<N>>
Eigenvalue and Singular Value decompositions can calculate the "values" only.interface
QR<N extends java.lang.Comparable<N>>
QR: [A] = [Q][R] Decomposes [this] into [Q] and [R] where: [Q] is an orthogonal matrix (orthonormal columns).interface
SingularValue<N extends java.lang.Comparable<N>>
Singular Value: [A] = [U][D][V]T Decomposes [this] into [U], [D] and [V] where: [U] is an orthogonal matrix.interface
Tridiagonal<N extends java.lang.Comparable<N>>
Tridiagonal: [A] = [Q][D][Q]H Any square symmetric (hermitian) matrix [A] can be factorized by similarity transformations into the form, [A]=[Q][D][Q]-1 where [Q] is an orthogonal (unitary) matrix and [D] is a real symmetric tridiagonal matrix.Classes in org.ojalgo.matrix.decomposition that implement Structure2D Modifier and Type Class Description (package private) class
AbstractDecomposition<N extends java.lang.Comparable<N>>
(package private) class
BidiagonalDecomposition<N extends java.lang.Comparable<N>>
(package private) static class
BidiagonalDecomposition.C128
(package private) static class
BidiagonalDecomposition.H256
(package private) static class
BidiagonalDecomposition.Q128
(package private) static class
BidiagonalDecomposition.R064
(package private) static class
BidiagonalDecomposition.R128
(package private) class
CholeskyDecomposition<N extends java.lang.Comparable<N>>
(package private) static class
CholeskyDecomposition.C128
(package private) static class
CholeskyDecomposition.H256
(package private) static class
CholeskyDecomposition.Q128
(package private) static class
CholeskyDecomposition.R064
(package private) static class
CholeskyDecomposition.R128
(package private) class
DeferredTridiagonal<N extends java.lang.Comparable<N>>
(package private) static class
DeferredTridiagonal.C128
(package private) static class
DeferredTridiagonal.H256
(package private) static class
DeferredTridiagonal.Q128
(package private) static class
DeferredTridiagonal.R064
(package private) static class
DeferredTridiagonal.R128
(package private) class
DynamicEvD<N extends java.lang.Comparable<N>>
(package private) static class
DynamicEvD.R064
(package private) class
EigenvalueDecomposition<N extends java.lang.Comparable<N>>
(package private) class
GeneralEvD<N extends java.lang.Comparable<N>>
(package private) static class
GeneralEvD.R064
Eigenvalues and eigenvectors of a real matrix.(package private) class
GeneralisedEvD<N extends java.lang.Comparable<N>>
(package private) class
GenericDecomposition<N extends java.lang.Comparable<N>>
AbstractDecomposition(package private) class
HermitianEvD<N extends java.lang.Comparable<N>>
Eigenvalues and eigenvectors of a real matrix.(package private) static class
HermitianEvD.C128
(package private) static class
HermitianEvD.H256
(package private) static class
HermitianEvD.Q128
(package private) static class
HermitianEvD.R064
(package private) static class
HermitianEvD.R128
(package private) class
HessenbergDecomposition<N extends java.lang.Comparable<N>>
(package private) static class
HessenbergDecomposition.C128
(package private) static class
HessenbergDecomposition.H256
(package private) static class
HessenbergDecomposition.Q128
(package private) static class
HessenbergDecomposition.R064
(package private) static class
HessenbergDecomposition.R128
(package private) class
InPlaceDecomposition<N extends java.lang.Comparable<N>>
(package private) class
LDLDecomposition<N extends java.lang.Comparable<N>>
(package private) static class
LDLDecomposition.C128
(package private) static class
LDLDecomposition.H256
(package private) static class
LDLDecomposition.Q128
(package private) static class
LDLDecomposition.R064
(package private) static class
LDLDecomposition.R128
(package private) class
LUDecomposition<N extends java.lang.Comparable<N>>
(package private) static class
LUDecomposition.C128
(package private) static class
LUDecomposition.H256
(package private) static class
LUDecomposition.Q128
(package private) static class
LUDecomposition.R064
(package private) static class
LUDecomposition.R128
(package private) class
QRDecomposition<N extends java.lang.Comparable<N>>
(package private) static class
QRDecomposition.C128
(package private) static class
QRDecomposition.H256
(package private) static class
QRDecomposition.Q128
(package private) static class
QRDecomposition.R064
(package private) static class
QRDecomposition.R128
(package private) class
RawCholesky
(package private) class
RawDecomposition
In many ways similar to InPlaceDecomposition but this class is hardwired to work with double[][] data.(package private) class
RawEigenvalue
Eigenvalues and eigenvectors of a real matrix.(package private) static class
RawEigenvalue.Dynamic
(package private) static class
RawEigenvalue.General
(package private) static class
RawEigenvalue.Symmetric
(package private) class
RawLU
(package private) class
RawQR
For an m-by-n matrix A with m >= n, the QR decomposition is an m-by-n orthogonal matrix Q and an n-by-n upper triangular matrix R so that A = Q*R.(package private) class
RawSingularValue
Singular Value Decomposition.(package private) class
SimultaneousTridiagonal
Computes Q while decomposing.(package private) class
SingularValueDecomposition<N extends java.lang.Comparable<N>>
(package private) static class
SingularValueDecomposition.C128
(package private) static class
SingularValueDecomposition.H256
(package private) static class
SingularValueDecomposition.Q128
(package private) static class
SingularValueDecomposition.R064
(package private) static class
SingularValueDecomposition.R128
(package private) class
TridiagonalDecomposition<N extends java.lang.Comparable<N>>
Fields in org.ojalgo.matrix.decomposition declared as Structure2D Modifier and Type Field Description private Structure2D
SingularValueDecomposition. myInputStructure
static Structure2D
MatrixDecomposition. TYPICAL
Methods in org.ojalgo.matrix.decomposition with parameters of type Structure2D Modifier and Type Method Description default Bidiagonal<N>
Bidiagonal.Factory. make(Structure2D typical)
Bidiagonal<N>
Bidiagonal.Factory. make(Structure2D typical, boolean fullSize)
default Eigenvalue<N>
Eigenvalue.Factory. make(Structure2D typical)
Eigenvalue<N>
Eigenvalue.Factory. make(Structure2D typical, boolean hermitian)
LDL<N>
LDL.ModifiedFactory. make(Structure2D typical)
D
MatrixDecomposition.Factory. make(Structure2D typical)
Will create a new decomposition instance suitable for matrices of the specified size.default QR<N>
QR.Factory. make(Structure2D typical)
QR<N>
QR.Factory. make(Structure2D typical, boolean fullSize)
default SingularValue<N>
SingularValue.Factory. make(Structure2D typical)
SingularValue<N>
SingularValue.Factory. make(Structure2D typical, boolean fullSize)
default Eigenvalue.Generalised<N>
Eigenvalue.Factory. makeGeneralised(Structure2D typical)
[A][V] = [B][V][D]Eigenvalue.Generalised<N>
Eigenvalue.Factory. makeGeneralised(Structure2D typical, Eigenvalue.Generalisation type)
http://www.cmth.ph.ic.ac.uk/people/a.mackinnon/Lectures/compphys/node72.html https://www.netlib.org/lapack/lug/node54.htmlprotected DecompositionStore<N>
GenericDecomposition. makeZero(Structure2D shape)
PhysicalStore<N>
CholeskyDecomposition. preallocate(Structure2D template)
PhysicalStore<N>
CholeskyDecomposition. preallocate(Structure2D templateBody, Structure2D templateRHS)
PhysicalStore<N>
HermitianEvD. preallocate(Structure2D template)
PhysicalStore<N>
HermitianEvD. preallocate(Structure2D templateBody, Structure2D templateRHS)
PhysicalStore<N>
LDLDecomposition. preallocate(Structure2D template)
PhysicalStore<N>
LDLDecomposition. preallocate(Structure2D templateBody, Structure2D templateRHS)
PhysicalStore<N>
LUDecomposition. preallocate(Structure2D template)
PhysicalStore<N>
LUDecomposition. preallocate(Structure2D templateBody, Structure2D templateRHS)
PhysicalStore<N>
QRDecomposition. preallocate(Structure2D template)
PhysicalStore<N>
QRDecomposition. preallocate(Structure2D templateBody, Structure2D templateRHS)
PhysicalStore<java.lang.Double>
RawCholesky. preallocate(Structure2D template)
PhysicalStore<java.lang.Double>
RawCholesky. preallocate(Structure2D templateBody, Structure2D templateRHS)
PhysicalStore<java.lang.Double>
RawEigenvalue.Symmetric. preallocate(Structure2D template)
PhysicalStore<java.lang.Double>
RawEigenvalue.Symmetric. preallocate(Structure2D templateBody, Structure2D templateRHS)
PhysicalStore<java.lang.Double>
RawLU. preallocate(Structure2D template)
PhysicalStore<java.lang.Double>
RawLU. preallocate(Structure2D templateBody, Structure2D templateRHS)
PhysicalStore<java.lang.Double>
RawQR. preallocate(Structure2D template)
PhysicalStore<java.lang.Double>
RawQR. preallocate(Structure2D templateBody, Structure2D templateRHS)
PhysicalStore<java.lang.Double>
RawSingularValue. preallocate(Structure2D template)
PhysicalStore<java.lang.Double>
RawSingularValue. preallocate(Structure2D templateBody, Structure2D templateRHS)
PhysicalStore<N>
SingularValueDecomposition. preallocate(Structure2D template)
PhysicalStore<N>
SingularValueDecomposition. preallocate(Structure2D templateBody, Structure2D templateRHS)
(package private) double[][]
RawDecomposition. reset(Structure2D template, boolean transpose)
-
Uses of Structure2D in org.ojalgo.matrix.store
Subinterfaces of Structure2D in org.ojalgo.matrix.store Modifier and Type Interface Description interface
ElementsSupplier<N extends java.lang.Comparable<N>>
AnElementsSupplier
is not necessarily (or not yet) a matrix, but something from which the elements of a matrix can be derived.interface
MatrixStore<N extends java.lang.Comparable<N>>
A MatrixStore is a two dimensional store of numbers/scalars.interface
PhysicalStore<N extends java.lang.Comparable<N>>
PhysicalStore:s, as opposed to MatrixStore:s, are mutable.interface
TransformableRegion<N extends java.lang.Comparable<N>>
A transformable 2D (sub)region.Classes in org.ojalgo.matrix.store that implement Structure2D Modifier and Type Class Description (package private) class
AboveBelowStore<N extends java.lang.Comparable<N>>
A merger of two MatrixStore instances by placing one store below the other.(package private) class
AbstractStore<N extends java.lang.Comparable<N>>
(package private) class
ColumnsStore<N extends java.lang.Comparable<N>>
A selection (re-ordering) of columns.class
ColumnsSupplier<N extends java.lang.Comparable<N>>
Sparse columns – columns can be added and removed.static class
ColumnsSupplier.SingleView<N extends java.lang.Comparable<N>>
(package private) class
ComposingStore<N extends java.lang.Comparable<N>>
(package private) class
ConjugatedStore<N extends java.lang.Comparable<N>>
ConjugatedStoreclass
DiagonalStore<N extends java.lang.Comparable<N>,D extends Access1D<?>>
(package private) class
FactoryStore<N extends java.lang.Comparable<N>>
class
GenericStore<N extends Scalar<N>>
A generic implementation of PhysicalStore.(package private) class
IdentityStore<N extends java.lang.Comparable<N>>
IdentityStore(package private) class
LeftRightStore<N extends java.lang.Comparable<N>>
A merger of two MatrixStore instances by placing one store to the right of the other.(package private) class
LimitStore<N extends java.lang.Comparable<N>>
(package private) class
LogicalStore<N extends java.lang.Comparable<N>>
Logical stores are (intended to be) immutable.(package private) class
LowerHessenbergStore<N extends java.lang.Comparable<N>>
A Hessenberg matrix is one that is "almost" triangular.(package private) class
LowerSymmetricStore<N extends java.lang.Comparable<N>>
(package private) class
LowerTriangularStore<N extends java.lang.Comparable<N>>
(package private) class
MatrixPipeline<N extends java.lang.Comparable<N>>
Intermediate step in a matrix pipeline – a chain of operations to be executed when the elements are extracted.(package private) static class
MatrixPipeline.BinaryOperatorLeft<N extends java.lang.Comparable<N>>
(package private) static class
MatrixPipeline.BinaryOperatorRight<N extends java.lang.Comparable<N>>
(package private) static class
MatrixPipeline.ColumnsModifier<N extends java.lang.Comparable<N>>
(package private) static class
MatrixPipeline.ColumnsReducer<N extends java.lang.Comparable<N>>
(package private) static class
MatrixPipeline.Multiplication<N extends java.lang.Comparable<N>>
(package private) static class
MatrixPipeline.RowsModifier<N extends java.lang.Comparable<N>>
(package private) static class
MatrixPipeline.RowsReducer<N extends java.lang.Comparable<N>>
(package private) static class
MatrixPipeline.Transformer<N extends java.lang.Comparable<N>>
(package private) static class
MatrixPipeline.Transpose<N extends java.lang.Comparable<N>>
(package private) static class
MatrixPipeline.UnaryOperator<N extends java.lang.Comparable<N>>
(package private) class
OffsetStore<N extends java.lang.Comparable<N>>
class
R032Store
A float implementation of PhysicalStore.class
R064Store
A double implementation of PhysicalStore.class
RawStore
Uses double[][] internally.(package private) class
RepeatedColumnsStore<N extends java.lang.Comparable<N>>
(package private) class
RepeatedRowsStore<N extends java.lang.Comparable<N>>
(package private) class
RowsStore<N extends java.lang.Comparable<N>>
A selection (re-ordering) of rows.class
RowsSupplier<N extends java.lang.Comparable<N>>
Sparse rows – rows can be added and removed.static class
RowsSupplier.SingleView<N extends java.lang.Comparable<N>>
(package private) class
SelectingStore<N extends java.lang.Comparable<N>>
Selects (rearranges) existing rows and/or columns.(package private) class
ShadingStore<N extends java.lang.Comparable<N>>
Does not change the matrix size/shape, but applies some structure to the elements.(package private) class
SingleStore<N extends java.lang.Comparable<N>>
class
SparseStore<N extends java.lang.Comparable<N>>
A sparse matrix (this implementation) is not thread safe.static class
SparseStore.Builder<N extends java.lang.Comparable<N>>
May be a preferable way to build a sparse matrix if: You don't know the number of nonzero elements in advance.(package private) class
Subregion2D<N extends java.lang.Comparable<N>>
(package private) static class
Subregion2D.ColumnsRegion<N extends java.lang.Comparable<N>>
(package private) static class
Subregion2D.LimitRegion<N extends java.lang.Comparable<N>>
(package private) static class
Subregion2D.OffsetRegion<N extends java.lang.Comparable<N>>
(package private) static class
Subregion2D.RowsRegion<N extends java.lang.Comparable<N>>
(package private) static class
Subregion2D.SynchronizedRegion<N extends java.lang.Comparable<N>>
(package private) static class
Subregion2D.TransposedRegion<N extends java.lang.Comparable<N>>
(package private) static class
Subregion2D.WrapperRegion<N extends java.lang.Comparable<N>>
(package private) class
SuperimposedStore<N extends java.lang.Comparable<N>>
SuperimposedStore(package private) class
TransjugatedStore<N extends java.lang.Comparable<N>>
(package private) class
TransposedStore<N extends java.lang.Comparable<N>>
(package private) class
UnaryOperatoStore<N extends java.lang.Comparable<N>>
(package private) class
UpperHessenbergStore<N extends java.lang.Comparable<N>>
A Hessenberg matrix is one that is "almost" triangular.(package private) class
UpperSymmetricStore<N extends java.lang.Comparable<N>>
(package private) class
UpperTriangularStore<N extends java.lang.Comparable<N>>
(package private) class
WrapperStore<N extends java.lang.Comparable<N>>
(package private) class
ZeroStore<N extends java.lang.Comparable<N>>
ZeroStoreMethods in org.ojalgo.matrix.store with parameters of type Structure2D Modifier and Type Method Description boolean
R032Store. isAcceptable(Structure2D supplier)
boolean
Subregion2D.SynchronizedRegion. isAcceptable(Structure2D supplier)
default I
PhysicalStore.Factory. makeEye(Structure2D shape)
default SparseStore<N>
PhysicalStore.Factory. makeSparse(Structure2D shape)
default MatrixStore<N>
PhysicalStore.Factory. makeZero(Structure2D shape)
-
Uses of Structure2D in org.ojalgo.matrix.task
Methods in org.ojalgo.matrix.task with parameters of type Structure2D Modifier and Type Method Description abstract DeterminantTask<N>
DeterminantTask.Factory. make(Structure2D template, boolean symmetric, boolean positiveDefinite)
abstract InverterTask<N>
InverterTask.Factory. make(Structure2D template, boolean symmetric, boolean positiveDefinite)
abstract SolverTask<N>
SolverTask.Factory. make(Structure2D templateBody, Structure2D templateRHS, boolean symmetric, boolean positiveDefinite)
PhysicalStore<java.lang.Double>
AbstractInverter. preallocate(Structure2D template)
PhysicalStore<java.lang.Double>
AbstractSolver. preallocate(Structure2D templateBody, Structure2D templateRHS)
PhysicalStore<N>
InverterTask. preallocate(Structure2D template)
Will create a PhysicalStore instance suitable for use withInverterTask.invert(Access2D, PhysicalStore)
.PhysicalStore<N>
SolverTask. preallocate(Structure2D templateBody, Structure2D templateRHS)
Will create a PhysicalStore instance suitable for use withSolverTask.solve(Access2D, Access2D, PhysicalStore)
. -
Uses of Structure2D in org.ojalgo.matrix.task.iterative
Methods in org.ojalgo.matrix.task.iterative with parameters of type Structure2D Modifier and Type Method Description PhysicalStore<java.lang.Double>
IterativeSolverTask. preallocate(Structure2D templateBody, Structure2D templateRHS)
-
Uses of Structure2D in org.ojalgo.matrix.transformation
Subinterfaces of Structure2D in org.ojalgo.matrix.transformation Modifier and Type Interface Description interface
InvertibleFactor<N extends java.lang.Comparable<N>>
A chainable and reversible in-place (equation system) solver.Classes in org.ojalgo.matrix.transformation that implement Structure2D Modifier and Type Class Description static class
InvertibleFactor.IdentityFactor<N extends java.lang.Comparable<N>>
-
Uses of Structure2D in org.ojalgo.optimisation.convex
Classes in org.ojalgo.optimisation.convex that implement Structure2D Modifier and Type Class Description (package private) class
IterativeASS.SchurComplementSolver
The equation system body is the (negated) Schur complement (of the Q-matrix in the full KKT-system).Fields in org.ojalgo.optimisation.convex with type parameters of type Structure2D Modifier and Type Field Description private java.util.function.Function<Structure2D,MatrixDecomposition.Solver<java.lang.Double>>
ConvexSolver.Configuration. mySolverGeneral
private java.util.function.Function<Structure2D,MatrixDecomposition.Solver<java.lang.Double>>
ConvexSolver.Configuration. mySolverSPD
Methods in org.ojalgo.optimisation.convex with parameters of type Structure2D Modifier and Type Method Description MatrixDecomposition.Solver<java.lang.Double>
ConvexSolver.Configuration. newSolverGeneral(Structure2D structure)
MatrixDecomposition.Solver<java.lang.Double>
ConvexSolver.Configuration. newSolverSPD(Structure2D structure)
Method parameters in org.ojalgo.optimisation.convex with type arguments of type Structure2D Modifier and Type Method Description ConvexSolver.Configuration
ConvexSolver.Configuration. solverGeneral(java.util.function.Function<Structure2D,MatrixDecomposition.Solver<java.lang.Double>> factory)
This matrix decomposition should be able to "invert" the full KKT systsem body matrix (which is symmetric) and/or its Schur complement with regards to the [Q] matrix (of quadratic terms).ConvexSolver.Configuration
ConvexSolver.Configuration. solverSPD(java.util.function.Function<Structure2D,MatrixDecomposition.Solver<java.lang.Double>> factory)
The [Q] matrix (of quadratic terms) is supposed to be symmetric positive definite (or at least semidefinite), but in reality there are usually many deficiencies. -
Uses of Structure2D in org.ojalgo.optimisation.linear
Classes in org.ojalgo.optimisation.linear that implement Structure2D Modifier and Type Class Description (package private) class
DenseTableau
(package private) class
ProductFormInverse
(package private) static class
ProductFormInverse.ElementaryFactor
(package private) class
SimplexTableau
(package private) class
SparseTableau
-
Uses of Structure2D in org.ojalgo.scalar
Classes in org.ojalgo.scalar that implement Structure2D Modifier and Type Class Description class
ComplexNumber
ComplexNumber is an immutable complex number class.class
Quaternion
-
Uses of Structure2D in org.ojalgo.structure
Classes in org.ojalgo.structure with type parameters of type Structure2D Modifier and Type Interface Description interface
Factory2D<I extends Structure2D>
static interface
Factory2D.Builder<I extends Structure2D>
static interface
Factory2D.MayBeSparse<I extends Structure2D,DENSE extends Factory2D.Builder<I>,SPARSE extends Factory2D.Builder<I>>
For when the structures can be either dense or sparse.static interface
Factory2D.TwoStep<I extends Structure2D,B extends Factory2D.Builder<I>>
static interface
Structure2D.Logical<S extends Structure2D,B extends Structure2D.Logical<S,B>>
static interface
StructureAnyD.ReducibleTo2D<R extends Structure2D>
Subinterfaces of Structure2D in org.ojalgo.structure Modifier and Type Interface Description interface
Access2D<N extends java.lang.Comparable<N>>
2-dimensional accessor methodsstatic interface
Access2D.Aggregatable<N extends java.lang.Comparable<N>>
static interface
Access2D.Collectable<N extends java.lang.Comparable<N>,R extends Mutate2D>
static interface
Access2D.Sliceable<N extends java.lang.Comparable<N>>
static interface
Access2D.Visitable<N extends java.lang.Comparable<N>>
static interface
Factory2D.Builder<I extends Structure2D>
interface
Mutate2D
2-dimensional mutator methodsstatic interface
Mutate2D.Exchangeable
A few operations with no 1D or AnyD counterpart.static interface
Mutate2D.Fillable<N extends java.lang.Comparable<N>>
static interface
Mutate2D.Mixable<N extends java.lang.Comparable<N>>
static interface
Mutate2D.Modifiable<N extends java.lang.Comparable<N>>
static interface
Mutate2D.ModifiableReceiver<N extends java.lang.Comparable<N>>
Apart from extendingMutate2D.Receiver
this interface extendsMutate2D.Modifiable
andMutate2D.Exchangeable
which both imply access to existing elements as well asAccess2D
that dictates explicit access.static interface
Mutate2D.Receiver<N extends java.lang.Comparable<N>>
interface
Operate2D<N extends java.lang.Comparable<N>,P extends Operate2D<N,P>>
To be implemented by classes that are not directly mutable themselves, but that can operate on the elements of some internal/future 2D data structure – similar to streams in some sense.static interface
Structure2D.Logical<S extends Structure2D,B extends Structure2D.Logical<S,B>>
static interface
Structure2D.ReducibleTo1D<R extends Structure1D>
static interface
Structure2D.Reshapable
Classes in org.ojalgo.structure that implement Structure2D Modifier and Type Class Description static class
Access2D.SelectionView<N extends java.lang.Comparable<N>>
static class
AccessAnyD.MatrixView<N extends java.lang.Comparable<N>>
class
Primitive2D
(package private) static class
Primitive2D.Simple
(package private) static class
Primitive2D.Wrapper
Fields in org.ojalgo.structure declared as Structure2D Modifier and Type Field Description private Structure2D
Primitive2D.Wrapper. myDelegate
Methods in org.ojalgo.structure that return Structure2D Modifier and Type Method Description Structure2D
Structure2D.Reshapable. reshape(long rows, long columns)
Methods in org.ojalgo.structure with parameters of type Structure2D Modifier and Type Method Description B
Structure2D.Logical. above(S... above)
B
Structure2D.Logical. below(S... below)
B
Structure2D.Logical. diagonally(S... diagonally)
default boolean
Mutate2D.Receiver. isAcceptable(Structure2D supplier)
B
Structure2D.Logical. left(S... left)
default I
Factory2D. make(Structure2D shape)
default I
Factory2D.TwoStep. make(Structure2D shape)
static <R,C>
Structure2D.RowColumnMapper<R,C>Structure2D. mapperOf(Structure2D structure, Structure1D.IndexMapper<R> rowMappwer, Structure1D.IndexMapper<C> columnMappwer)
B
Structure2D.Logical. right(S... right)
static Primitive2D
Primitive2D. wrap(Structure2D delegate)
Constructors in org.ojalgo.structure with parameters of type Structure2D Constructor Description RowColumnMapper(Structure2D structure, Structure1D.IndexMapper<R> rowMapper, Structure1D.IndexMapper<C> columnMapper)
Wrapper(Structure2D delegate)
-
Uses of Structure2D in org.ojalgo.tensor
Classes in org.ojalgo.tensor that implement Structure2D Modifier and Type Class Description class
MatrixTensor<N extends java.lang.Comparable<N>>
-