|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DoubleMatrix3D | |
---|---|
org.apache.mahout.math.matrix | Matrix interfaces and factories; efficient and flexible dense and sparse 1, 2, 3 and d-dimensional matrices holding objects or primitive data types such as int, double, etc; Templated, fixed sized (not dynamically resizable); Also known as multi-dimensional arrays or Data Cubes. |
org.apache.mahout.math.matrix.doublealgo | Double matrix algorithms such as print formatting, sorting, partitioning and statistics. |
org.apache.mahout.math.matrix.impl | Matrix implementations; You normally need not look at this package, because all concrete classes implement the
abstract interfaces of org.apache.mahout.math.matrix , without subsetting or supersetting. |
org.apache.mahout.math.matrix.linalg | Linear Algebraic matrix computations operating on DoubleMatrix2D
and DoubleMatrix1D . |
Uses of DoubleMatrix3D in org.apache.mahout.math.matrix |
---|
Methods in org.apache.mahout.math.matrix that return DoubleMatrix3D | |
---|---|
DoubleMatrix3D |
DoubleFactory3D.ascending(int slices,
int rows,
int columns)
Deprecated. Constructs a matrix with cells having ascending values. |
DoubleMatrix3D |
DoubleMatrix3D.assign(double value)
Deprecated. Sets all cells to the state specified by value. |
DoubleMatrix3D |
DoubleMatrix3D.assign(double[][][] values)
Deprecated. Sets all cells to the state specified by values. |
DoubleMatrix3D |
DoubleMatrix3D.assign(DoubleMatrix3D other)
Deprecated. Replaces all cell values of the receiver with the values of another matrix. |
DoubleMatrix3D |
DoubleMatrix3D.assign(DoubleMatrix3D y,
BinaryFunction function)
Deprecated. Assigns the result of a function to each cell; x[row,col] = function(x[row,col],y[row,col]). |
DoubleMatrix3D |
DoubleMatrix3D.assign(UnaryFunction function)
Deprecated. Assigns the result of a function to each cell; x[slice,row,col] = function(x[slice,row,col]). |
DoubleMatrix3D |
DoubleMatrix3D.copy()
Deprecated. Constructs and returns a deep copy of the receiver. |
DoubleMatrix3D |
DoubleFactory3D.descending(int slices,
int rows,
int columns)
Deprecated. Constructs a matrix with cells having descending values. |
protected DoubleMatrix3D |
DoubleMatrix3D.getContent()
Deprecated. Returns the content of this matrix if it is a wrapper; or this otherwise. |
DoubleMatrix3D |
DoubleMatrix3D.like()
Deprecated. Construct and returns a new empty matrix of the same dynamic type as the receiver, having the same number of slices, rows and columns. |
abstract DoubleMatrix3D |
DoubleMatrix3D.like(int slices,
int rows,
int columns)
Deprecated. Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of slices, rows and columns. |
DoubleMatrix3D |
DoubleFactory3D.make(double[][][] values)
Deprecated. Constructs a matrix with the given cell values. |
DoubleMatrix3D |
DoubleFactory3D.make(int slices,
int rows,
int columns)
Deprecated. Constructs a matrix with the given shape, each cell initialized with zero. |
DoubleMatrix3D |
DoubleFactory3D.make(int slices,
int rows,
int columns,
double initialValue)
Deprecated. Constructs a matrix with the given shape, each cell initialized with the given value. |
DoubleMatrix3D |
DoubleFactory3D.random(int slices,
int rows,
int columns)
Deprecated. Constructs a matrix with uniformly distributed values in (0,1) (exclusive). |
protected DoubleMatrix3D |
DoubleMatrix3D.view()
Deprecated. Constructs and returns a new view equal to the receiver. |
DoubleMatrix3D |
DoubleMatrix3D.viewColumnFlip()
Deprecated. Constructs and returns a new flip view along the column axis. |
DoubleMatrix3D |
DoubleMatrix3D.viewDice(int axis0,
int axis1,
int axis2)
Deprecated. Constructs and returns a new dice view; Swaps dimensions (axes); Example: 3 x 4 x 5 matrix --> 4 x 3 x 5 matrix. |
DoubleMatrix3D |
DoubleMatrix3D.viewPart(int slice,
int row,
int column,
int depth,
int height,
int width)
Deprecated. Constructs and returns a new sub-range view that is a depth x height x width sub matrix starting at [slice,row,column]; Equivalent to view().part(slice,row,column,depth,height,width); Provided for convenience only. |
DoubleMatrix3D |
DoubleMatrix3D.viewRowFlip()
Deprecated. Constructs and returns a new flip view along the row axis. |
DoubleMatrix3D |
DoubleMatrix3D.viewSelection(DoubleMatrix2DProcedure condition)
Deprecated. Constructs and returns a new selection view that is a matrix holding all slices matching the given condition. |
DoubleMatrix3D |
DoubleMatrix3D.viewSelection(int[] sliceIndexes,
int[] rowIndexes,
int[] columnIndexes)
Deprecated. Constructs and returns a new selection view that is a matrix holding the indicated cells. |
protected abstract DoubleMatrix3D |
DoubleMatrix3D.viewSelectionLike(int[] sliceOffsets,
int[] rowOffsets,
int[] columnOffsets)
Deprecated. Construct and returns a new selection view. |
DoubleMatrix3D |
DoubleMatrix3D.viewSliceFlip()
Deprecated. Constructs and returns a new flip view along the slice axis. |
DoubleMatrix3D |
DoubleMatrix3D.viewSorted(int row,
int column)
Deprecated. Sorts the matrix slices into ascending order, according to the natural ordering of the matrix values in the given [row,column] position. |
DoubleMatrix3D |
DoubleMatrix3D.viewStrides(int sliceStride,
int rowStride,
int columnStride)
Deprecated. Constructs and returns a new stride view which is a sub matrix consisting of every i-th cell. |
Methods in org.apache.mahout.math.matrix with parameters of type DoubleMatrix3D | |
---|---|
double |
DoubleMatrix3D.aggregate(DoubleMatrix3D other,
BinaryFunction aggr,
BinaryFunction f)
Deprecated. Applies a function to each corresponding cell of two matrices and aggregates the results. |
boolean |
DoubleMatrix3DProcedure.apply(DoubleMatrix3D element)
Deprecated. Applies a procedure to an argument. |
DoubleMatrix3D |
DoubleMatrix3D.assign(DoubleMatrix3D other)
Deprecated. Replaces all cell values of the receiver with the values of another matrix. |
DoubleMatrix3D |
DoubleMatrix3D.assign(DoubleMatrix3D y,
BinaryFunction function)
Deprecated. Assigns the result of a function to each cell; x[row,col] = function(x[row,col],y[row,col]). |
protected boolean |
DoubleMatrix3D.haveSharedCells(DoubleMatrix3D other)
Deprecated. Returns true if both matrices share at least one identical cell. |
protected boolean |
DoubleMatrix3D.haveSharedCellsRaw(DoubleMatrix3D other)
Deprecated. Returns true if both matrices share at least one identical cell. |
void |
DoubleMatrix3D.zAssign27Neighbors(DoubleMatrix3D B,
Double27Function function)
Deprecated. 27 neighbor stencil transformation. |
Uses of DoubleMatrix3D in org.apache.mahout.math.matrix.doublealgo |
---|
Methods in org.apache.mahout.math.matrix.doublealgo that return DoubleMatrix3D | |
---|---|
DoubleMatrix3D |
Sorting.sort(DoubleMatrix3D matrix,
DoubleMatrix2DComparator c)
Deprecated. Sorts the matrix slices according to the order induced by the specified comparator. |
DoubleMatrix3D |
Sorting.sort(DoubleMatrix3D matrix,
int row,
int column)
Deprecated. Sorts the matrix slices into ascending order, according to the natural ordering of the matrix values in the given [row,column] position. |
static DoubleMatrix3D |
Statistic.viewSample(DoubleMatrix3D matrix,
double sliceFraction,
double rowFraction,
double columnFraction,
RandomEngine randomGenerator)
Deprecated. Constructs and returns a sampling view with round(matrix.slices() * sliceFraction) slices and round(matrix.rows() * rowFraction) rows and round(matrix.columns() * columnFraction) columns. |
Methods in org.apache.mahout.math.matrix.doublealgo with parameters of type DoubleMatrix3D | |
---|---|
DoubleMatrix3D |
Sorting.sort(DoubleMatrix3D matrix,
DoubleMatrix2DComparator c)
Deprecated. Sorts the matrix slices according to the order induced by the specified comparator. |
DoubleMatrix3D |
Sorting.sort(DoubleMatrix3D matrix,
int row,
int column)
Deprecated. Sorts the matrix slices into ascending order, according to the natural ordering of the matrix values in the given [row,column] position. |
static int |
Stencil.stencil27(DoubleMatrix3D A,
Double27Function function,
int maxIterations,
DoubleMatrix3DProcedure hasConverged,
int convergenceIterations)
Deprecated. 27 point stencil operation. |
java.lang.String |
Formatter.toSourceCode(DoubleMatrix3D matrix)
Deprecated. Returns a string s such that Object[] m = s is a legal Java statement. |
java.lang.String |
Formatter.toString(DoubleMatrix3D matrix)
Deprecated. Returns a string representation of the given matrix. |
static DoubleMatrix3D |
Statistic.viewSample(DoubleMatrix3D matrix,
double sliceFraction,
double rowFraction,
double columnFraction,
RandomEngine randomGenerator)
Deprecated. Constructs and returns a sampling view with round(matrix.slices() * sliceFraction) slices and round(matrix.rows() * rowFraction) rows and round(matrix.columns() * columnFraction) columns. |
Uses of DoubleMatrix3D in org.apache.mahout.math.matrix.impl |
---|
Subclasses of DoubleMatrix3D in org.apache.mahout.math.matrix.impl | |
---|---|
class |
DenseDoubleMatrix3D
Deprecated. until unit tests are in place. Until this time, this class/interface is unsupported. |
class |
SparseDoubleMatrix3D
Deprecated. until unit tests are in place. Until this time, this class/interface is unsupported. |
Methods in org.apache.mahout.math.matrix.impl that return DoubleMatrix3D | |
---|---|
DoubleMatrix3D |
SparseDoubleMatrix3D.assign(double value)
Deprecated. Sets all cells to the state specified by value. |
DoubleMatrix3D |
DenseDoubleMatrix3D.assign(double[][][] values)
Deprecated. Sets all cells to the state specified by values. |
DoubleMatrix3D |
DenseDoubleMatrix3D.assign(DoubleMatrix3D source)
Deprecated. Replaces all cell values of the receiver with the values of another matrix. |
DoubleMatrix3D |
SparseDoubleMatrix3D.like(int slices,
int rows,
int columns)
Deprecated. Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of slices, rows and columns. |
DoubleMatrix3D |
DenseDoubleMatrix3D.like(int slices,
int rows,
int columns)
Deprecated. Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of slices, rows and columns. |
protected DoubleMatrix3D |
SparseDoubleMatrix3D.viewSelectionLike(int[] sliceOffsets,
int[] rowOffsets,
int[] columnOffsets)
Deprecated. Construct and returns a new selection view. |
protected DoubleMatrix3D |
DenseDoubleMatrix3D.viewSelectionLike(int[] sliceOffsets,
int[] rowOffsets,
int[] columnOffsets)
Deprecated. Construct and returns a new selection view. |
Methods in org.apache.mahout.math.matrix.impl with parameters of type DoubleMatrix3D | |
---|---|
DoubleMatrix3D |
DenseDoubleMatrix3D.assign(DoubleMatrix3D source)
Deprecated. Replaces all cell values of the receiver with the values of another matrix. |
protected boolean |
SparseDoubleMatrix3D.haveSharedCellsRaw(DoubleMatrix3D other)
Deprecated. Returns true if both matrices share at least one identical cell. |
protected boolean |
DenseDoubleMatrix3D.haveSharedCellsRaw(DoubleMatrix3D other)
Deprecated. Returns true if both matrices share common cells. |
void |
DenseDoubleMatrix3D.zAssign27Neighbors(DoubleMatrix3D B,
Double27Function function)
Deprecated. 27 neighbor stencil transformation. |
Uses of DoubleMatrix3D in org.apache.mahout.math.matrix.linalg |
---|
Methods in org.apache.mahout.math.matrix.linalg with parameters of type DoubleMatrix3D | |
---|---|
boolean |
Property.equals(DoubleMatrix3D A,
double value)
Deprecated. Returns whether all cells of the given matrix A are equal to the given value. |
boolean |
Property.equals(DoubleMatrix3D A,
DoubleMatrix3D B)
Deprecated. Returns whether both given matrices A and B are equal. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |