Uses of Interface
org.ojalgo.structure.Factory2D
-
Packages that use Factory2D Package Description org.ojalgo.array org.ojalgo.array.operation Everythinng in this package should be considered library-private – it should only be used by other parts of ojAlgo! Code in this package is often refactored (api-breaking) without even a notice in the changelog.org.ojalgo.data org.ojalgo.data.transform org.ojalgo.matrix org.ojalgo.matrix.store org.ojalgo.series.primitive org.ojalgo.structure org.ojalgo.tensor -
-
Uses of Factory2D in org.ojalgo.array
Classes in org.ojalgo.array that implement Factory2D Modifier and Type Class Description static class
Array2D.Factory<N extends java.lang.Comparable<N>>
Methods in org.ojalgo.array that return Factory2D Modifier and Type Method Description (package private) Factory2D<Array2D<N>>
Array2D. factory()
-
Uses of Factory2D in org.ojalgo.array.operation
Methods in org.ojalgo.array.operation with parameters of type Factory2D Modifier and Type Method Description (package private) static <N extends java.lang.Comparable<N>,T extends Mutate2D>
TFillCompatible. expand(Factory2D<T> factory, Access2D<N> left, BinaryFunction<N> operator, Access2D<N> right)
-
Uses of Factory2D in org.ojalgo.data
Methods in org.ojalgo.data with parameters of type Factory2D Modifier and Type Method Description static <M extends Mutate2D>
MDataProcessors. correlations(Factory2D<M> factory, Access1D<?>... data)
Calculate the correlation matrix from a set of variables' samples.static <M extends Mutate2D>
MDataProcessors. covariances(Factory2D<M> factory, double[]... data)
static <D extends Access2D<?> & Access2D.Sliceable<?>,M extends Mutate2D>
MDataProcessors. covariances(Factory2D<M> factory, D data)
Variables in columns and matching samples in rows.static <M extends PhysicalStore<java.lang.Double>>
MDataProcessors. covariances(Factory2D<M> factory, SingularValue<java.lang.Double> svd)
static <M extends PhysicalStore<java.lang.Double>>
MDataProcessors. covariances(Factory2D<M> factory, SingularValue<java.lang.Double> svd, double threshold)
static <M extends PhysicalStore<java.lang.Double>>
MDataProcessors. covariances(Factory2D<M> factory, SingularValue<java.lang.Double> svd, int complexity)
static <M extends Mutate2D>
MDataProcessors. covariances(Factory2D<M> factory, Access1D<?>... data)
Calculate the covariance matrix from a set of variables' samples.static DataBatch
DataBatch. from(Factory2D<? extends Mutate2D.ModifiableReceiver<java.lang.Double>> factory, int batchSize, int dataNodes)
With the batch size/capacity specified. -
Uses of Factory2D in org.ojalgo.data.transform
Methods in org.ojalgo.data.transform with parameters of type Factory2D Modifier and Type Method Description static <M extends Mutate2D>
MDiscreteFourierTransform. newVandermonde(Factory2D<M> factory, int size)
-
Uses of Factory2D in org.ojalgo.matrix
Classes in org.ojalgo.matrix that implement Factory2D Modifier and Type Class Description static class
MatrixC128.Factory
class
MatrixFactory<N extends java.lang.Comparable<N>,M extends BasicMatrix<N,M>,DR extends Mutate2D.ModifiableReceiver<N> & Factory2D.Builder<M>,SR extends Factory2D.Builder<M>>
MatrixFactory creates instances of classes that implement the BasicMatrix interface and have a constructor that takes a MatrixStore as input.static class
MatrixH256.Factory
static class
MatrixQ128.Factory
static class
MatrixR032.Factory
static class
MatrixR064.Factory
static class
MatrixR128.Factory
-
Uses of Factory2D in org.ojalgo.matrix.store
Subinterfaces of Factory2D in org.ojalgo.matrix.store Modifier and Type Interface Description static interface
PhysicalStore.Factory<N extends java.lang.Comparable<N>,I extends PhysicalStore<N> & Factory2D.Builder<I>>
Classes in org.ojalgo.matrix.store that implement Factory2D Modifier and Type Class Description (package private) static class
GenericStore.Factory<N extends Scalar<N>>
(package private) class
PrimitiveFactory<I extends PhysicalStore<java.lang.Double> & Factory2D.Builder<I>>
static class
SparseStore.Factory<N extends java.lang.Comparable<N>>
-
Uses of Factory2D in org.ojalgo.series.primitive
Methods in org.ojalgo.series.primitive with parameters of type Factory2D Modifier and Type Method Description <M extends Mutate2D>
MSeriesSet. getCorrelations(Factory2D<M> factory)
<M extends Mutate2D>
MSeriesSet. getCovariances(Factory2D<M> factory)
-
Uses of Factory2D in org.ojalgo.structure
Subinterfaces of Factory2D in org.ojalgo.structure Modifier and Type Interface Description 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>>
Methods in org.ojalgo.structure with parameters of type Factory2D Modifier and Type Method Description default <I extends R>
IAccess2D.Collectable. collect(Factory2D<I> factory)
-
Uses of Factory2D in org.ojalgo.tensor
Classes in org.ojalgo.tensor that implement Factory2D Modifier and Type Class Description (package private) static class
MatrixTensor.Factory<N extends java.lang.Comparable<N>>
class
TensorFactory2D<N extends java.lang.Comparable<N>,T extends Mutate2D>
Fields in org.ojalgo.tensor declared as Factory2D Modifier and Type Field Description private Factory2D<T>
TensorFactory2D. myFactory
Methods in org.ojalgo.tensor with parameters of type Factory2D Modifier and Type Method Description static <N extends java.lang.Comparable<N>,T extends Mutate2D>
TensorFactory2D<N,T>TensorFactory2D. of(Factory2D<T> factory)
Constructors in org.ojalgo.tensor with parameters of type Factory2D Constructor Description TensorFactory2D(Factory2D<T> factory)
-