Package org.ojalgo.matrix.task
Class AbstractInverter
java.lang.Object
org.ojalgo.matrix.task.AbstractInverter
- All Implemented Interfaces:
InverterTask<Double>
,MatrixTask<Double>
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.ojalgo.matrix.task.InverterTask
InverterTask.Factory<N extends Comparable<N>>
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) static final InverterTask
<Double> (package private) static final InverterTask
<Double> (package private) static final InverterTask
<Double> (package private) static final InverterTask
<Double> (package private) static final InverterTask
<Double> (package private) static final InverterTask
<Double> (package private) static final InverterTask
<Double> (package private) static final InverterTask
<Double> (package private) static final InverterTask
<Double> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription(package private) abstract long
dim()
(package private) static void
full1X1
(Access2D<?> source, PhysicalStore<?> destination) (package private) static void
full2X2
(Access2D<?> source, PhysicalStore<?> destination) (package private) static void
full3X3
(Access2D<?> source, PhysicalStore<?> destination) (package private) static void
full4X4
(Access2D<?> source, PhysicalStore<?> destination) (package private) static void
full5X5
(Access2D<?> source, PhysicalStore<?> destination) final MatrixStore
<Double> The output must be a "right inverse" and a "generalised inverse".final PhysicalStore
<Double> preallocate
(Structure2D template) Will create a PhysicalStore instance suitable for use withInverterTask.invert(Access2D, PhysicalStore)
.(package private) static void
symmetric2X2
(Access2D<?> source, PhysicalStore<?> destination) (package private) static void
symmetric3X3
(Access2D<?> source, PhysicalStore<?> destination) (package private) static void
symmetric4X4
(Access2D<?> source, PhysicalStore<?> destination) (package private) static void
symmetric5X5
(Access2D<?> source, PhysicalStore<?> destination) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.ojalgo.matrix.task.InverterTask
invert, preallocate, toInverseProvider
-
Field Details
-
FULL_1X1
-
FULL_2X2
-
FULL_3X3
-
FULL_4X4
-
FULL_5X5
-
SYMMETRIC_2X2
-
SYMMETRIC_3X3
-
SYMMETRIC_4X4
-
SYMMETRIC_5X5
-
-
Constructor Details
-
AbstractInverter
AbstractInverter()
-
-
Method Details
-
full1X1
-
full2X2
-
full3X3
-
full4X4
-
full5X5
-
symmetric2X2
-
symmetric3X3
-
symmetric4X4
-
symmetric5X5
-
invert
Description copied from interface:InverterTask
The output must be a "right inverse" and a "generalised inverse".- Specified by:
invert
in interfaceInverterTask<Double>
- Throws:
RecoverableCondition
-
preallocate
Description copied from interface:InverterTask
Will create a PhysicalStore instance suitable for use with
InverterTask.invert(Access2D, PhysicalStore)
.When inverting a matrix (mxn) the preallocated memory/matrix will typically be nxm (and of course most of the time A is square).
- Specified by:
preallocate
in interfaceInverterTask<Double>
-
dim
abstract long dim()
-