org.ujmp.core.matrix.factory
Interface MatrixFactoryRoot

All Superinterfaces:
Serializable
All Known Subinterfaces:
DenseDoubleMatrix2DFactory, DenseDoubleMatrixFactory, DenseMatrix2DFactory, DenseMatrixFactory, DenseObjectMatrix2DFactory, DenseObjectMatrixFactory, DoubleMatrix2DFactory, DoubleMatrixFactory, Matrix2DFactory, ObjectMatrix2DFactory, ObjectMatrixFactory, SparseDoubleMatrix2DFactory, SparseDoubleMatrixFactory, SparseMatrix2DFactory, SparseMatrixFactory, SparseObjectMatrix2DFactory, SparseObjectMatrixFactory
All Known Implementing Classes:
AbstractDoubleMatrix2DFactory, AbstractMatrixFactory, DefaultDenseDoubleMatrix2DFactory, DefaultDenseDoubleMatrixFactory, DefaultDenseObjectMatrix2DFactory, DefaultDenseObjectMatrixFactory, DefaultSparseDoubleMatrix2DFactory, DefaultSparseDoubleMatrixFactory, DefaultSparseObjectMatrix2DFactory, DefaultSparseObjectMatrixFactory, MatrixFactoryTemp

public interface MatrixFactoryRoot
extends Serializable


Field Summary
static int ALL
           
static int COLUMN
           
static int NONE
           
static int ROW
           
static int X
           
static int Y
           
static int Z
           
 
Method Summary
 Matrix eye(long... size)
           
 Matrix ones(long... size)
           
 Matrix rand(long... size)
           
 Matrix randn(long... size)
           
 Matrix zeros(long... size)
           
 

Field Detail

ROW

static final int ROW
See Also:
Constant Field Values

COLUMN

static final int COLUMN
See Also:
Constant Field Values

Y

static final int Y
See Also:
Constant Field Values

X

static final int X
See Also:
Constant Field Values

Z

static final int Z
See Also:
Constant Field Values

ALL

static final int ALL
See Also:
Constant Field Values

NONE

static final int NONE
See Also:
Constant Field Values
Method Detail

zeros

Matrix zeros(long... size)

ones

Matrix ones(long... size)

rand

Matrix rand(long... size)

randn

Matrix randn(long... size)

eye

Matrix eye(long... size)


Copyright © 2010. All Rights Reserved.