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>
  • Field Summary

    Fields inherited from interface org.ujmp.core.matrix.factory.BaseMatrixFactory

    ALL, COLUMN, LINK, NEW, NONE, ORIG, ROW, X, Y, Z
  • Method Summary

    Modifier and Type
    Method
    Description
    eye(long rows, long cols)
     
    ones(long rows, long cols)
     
    rand(long rows, long cols)
     
    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
  • Method Details

    • ones

      T ones(long rows, long cols)
    • rand

      T rand(long rows, long cols)
    • randn

      T randn(long rows, long cols)
    • eye

      T eye(long rows, long cols)