org.ojalgo.matrix.decomposition
Interface LUDecomposition.Store<N extends Number>

All Superinterfaces:
Access2D<N>, MatrixStore<N>, PhysicalStore<N>
All Known Implementing Classes:
BigDenseStore, ComplexDenseStore, PrimitiveDenseStore
Enclosing class:
LUDecomposition<N extends Number>

public static interface LUDecomposition.Store<N extends Number>
extends PhysicalStore<N>

Only classes that will act as a delegate to LUDecomposition should implement this interface. The interface specifications are entirely dictated by that class.

Do not use it for anything else!

Author:
apete

Nested Class Summary
 
Nested classes/interfaces inherited from interface org.ojalgo.matrix.store.PhysicalStore
PhysicalStore.Factory<N extends Number>
 
Nested classes/interfaces inherited from interface org.ojalgo.matrix.store.MatrixStore
MatrixStore.Builder<N extends Number>
 
Method Summary
 LUDecomposition.Pivot computeInPlaceLU(boolean assumeNoPivotingRequired)
           
 int getColDim()
           
 int getMinDim()
           
 int getRowDim()
           
 int size()
           
 
Methods inherited from interface org.ojalgo.matrix.store.PhysicalStore
asList, caxpy, exchangeColumns, exchangeRows, fillAll, fillByMultiplying, fillColumn, fillDiagonal, fillMatching, fillMatching, fillMatching, fillMatching, fillRow, generateHouseholderColumn, generateHouseholderRow, getIndexOfLargestInColumn, getIndexOfLargestInRow, maxpy, modifyAll, modifyColumn, modifyDiagonal, modifyRow, raxpy, set, set, shadeLowerLeft, shadeUpperRight, substituteBackwards, substituteBackwards, substituteForwards, substituteForwards, transformLeft, transformLeft, transformLeft, transformRight, transformRight, transformRight, unshade
 
Methods inherited from interface org.ojalgo.matrix.store.MatrixStore
aggregateAll, aggregateAll, builder, conjugate, copy, equals, getFactory, isAbsolute, isLowerLeftShaded, isReal, isShaded, isUpperRightShaded, isZero, multiplyLeft, multiplyRight, toRawCopy, transpose, visitAll, visitColumn, visitDiagonal, visitRow
 
Methods inherited from interface org.ojalgo.access.Access2D
doubleValue, get, toScalar
 

Method Detail

computeInPlaceLU

LUDecomposition.Pivot computeInPlaceLU(boolean assumeNoPivotingRequired)

getColDim

int getColDim()

getMinDim

int getMinDim()

getRowDim

int getRowDim()

size

int size()