Interface DoubleMatrix2DFactory<T extends DoubleMatrix2D>
-
- All Superinterfaces:
BaseDoubleMatrixFactory<T>
,BaseGenericMatrixFactory<T>
,BaseMatrixFactory<T>
,BaseNumberMatrixFactory<T>
,GenericMatrix2DFactory<T>
,Matrix2DFactory<T>
,NumberMatrix2DFactory<T>
- All Known Subinterfaces:
DenseDoubleMatrix2DFactory<T>
,DoubleMatrixFactory<T>
,SparseDoubleMatrix2DFactory<T>
- All Known Implementing Classes:
AbstractDenseDoubleMatrix2DFactory
,AbstractSparseDoubleMatrix2DFactory
,ColtDenseDoubleMatrix2DFactory
,ColtSparseDoubleMatrix2DFactory
,CommonsMathArrayDenseDoubleMatrix2DFactory
,CommonsMathBlockDenseDoubleMatrix2DFactory
,CommonsMathDenseDoubleMatrix2DFactory
,DefaultDenseDoubleMatrix2DFactory
,DefaultSparseDoubleMatrix2DFactory
,JamaDenseDoubleMatrix2DFactory
,JBlasDenseDoubleMatrix2DFactory
,La4JDenseDoubleMatrix2DFactory
,VecMathDenseDoubleMatrix2DFactory
public interface DoubleMatrix2DFactory<T extends DoubleMatrix2D> extends NumberMatrix2DFactory<T>, BaseDoubleMatrixFactory<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
eye(long rows, long cols)
T
ones(long rows, long cols)
T
rand(long rows, long cols)
T
randn(long rows, long cols)
-
Methods inherited from interface org.ujmp.core.matrix.factory.BaseMatrixFactory
zeros
-
Methods inherited from interface org.ujmp.core.matrix.factory.Matrix2DFactory
zeros
-
-