org.ojalgo.matrix.store
Interface PhysicalStore.Factory<N extends Number>
- All Superinterfaces:
- Serializable
- All Known Implementing Classes:
- JamaFactory
- Enclosing interface:
- PhysicalStore<N extends Number>
public static interface PhysicalStore.Factory<N extends Number>
- extends Serializable
conjugate
PhysicalStore<N> conjugate(Access2D<? extends Number> aSource)
copy
PhysicalStore<N> copy(Access2D<? extends Number> aSource)
copy
PhysicalStore<N> copy(double[][] aSource)
copyArray
@Deprecated
PhysicalStore<N> copyArray(Array2D<? extends Number> aSource)
- Deprecated. v29 Use
copy(Access2D) instead
copyMatrix
@Deprecated
PhysicalStore<N> copyMatrix(BasicMatrix aSource)
- Deprecated. v29 Use
copy(Access2D) instead
copyRaw
@Deprecated
PhysicalStore<N> copyRaw(double[][] aSource)
- Deprecated. v29 Use
copy(double[][]) instead
copyStore
@Deprecated
PhysicalStore<N> copyStore(MatrixStore<? extends Number> aSource)
- Deprecated. v29 Use
copy(Access2D) instead
getAggregatorCollection
AggregatorCollection<N> getAggregatorCollection()
getFunctionSet
FunctionSet<N> getFunctionSet()
getNumber
N getNumber(double aNmbr)
getNumber
N getNumber(Number aNmbr)
getStaticOne
Scalar<N> getStaticOne()
getStaticZero
Scalar<N> getStaticZero()
makeColumn
PhysicalStore<N> makeColumn(double[] aColumn)
makeColumn
PhysicalStore<N> makeColumn(List<N> aColumn)
makeColumn
PhysicalStore<N> makeColumn(N[] aColumn)
makeEmpty
PhysicalStore<N> makeEmpty(int aRowDim,
int aColDim)
makeEye
PhysicalStore<N> makeEye(int aRowDim,
int aColDim)
makeZero
PhysicalStore<N> makeZero(int aRowDim,
int aColDim)
toScalar
Scalar<N> toScalar(double aNmbr)
toScalar
Scalar<N> toScalar(Number aNmbr)
transpose
PhysicalStore<N> transpose(Access2D<? extends Number> aSource)