Uses of Class
org.apache.mahout.math.matrix.impl.AbstractMatrix2D

Packages that use AbstractMatrix2D
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.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 AbstractMatrix2D in org.apache.mahout.math.matrix
 

Subclasses of AbstractMatrix2D in org.apache.mahout.math.matrix
 class DoubleMatrix2D
          Deprecated. until unit tests are in place. Until this time, this class/interface is unsupported.
 

Uses of AbstractMatrix2D in org.apache.mahout.math.matrix.impl
 

Subclasses of AbstractMatrix2D in org.apache.mahout.math.matrix.impl
 class DenseDoubleMatrix2D
          Deprecated. until unit tests are in place. Until this time, this class/interface is unsupported.
 class SparseDoubleMatrix2D
          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 AbstractMatrix2D
protected  AbstractMatrix2D AbstractMatrix2D.vColumnFlip()
          Deprecated. Self modifying version of viewColumnFlip().
protected  AbstractMatrix2D AbstractMatrix2D.vDice()
          Deprecated. Self modifying version of viewDice().
protected  AbstractMatrix2D AbstractMatrix2D.vPart(int row, int column, int height, int width)
          Deprecated. Self modifying version of viewPart().
protected  AbstractMatrix2D AbstractMatrix2D.vRowFlip()
          Deprecated. Self modifying version of viewRowFlip().
protected  AbstractMatrix2D AbstractMatrix2D.vStrides(int rowStride, int columnStride)
          Deprecated. Self modifying version of viewStrides().
 

Methods in org.apache.mahout.math.matrix.impl with parameters of type AbstractMatrix2D
 void AbstractMatrix2D.checkShape(AbstractMatrix2D B)
          Deprecated. Sanity check for operations requiring two matrices with the same number of columns and rows.
 void AbstractMatrix2D.checkShape(AbstractMatrix2D B, AbstractMatrix2D C)
          Deprecated. Sanity check for operations requiring matrices with the same number of columns and rows.
 

Uses of AbstractMatrix2D in org.apache.mahout.math.matrix.linalg
 

Methods in org.apache.mahout.math.matrix.linalg with parameters of type AbstractMatrix2D
static void Property.checkRectangular(AbstractMatrix2D a)
          Deprecated. Checks whether the given matrix A is rectangular.
static void Property.checkSquare(AbstractMatrix2D a)
          Deprecated. Checks whether the given matrix A is square.
static boolean Property.isSquare(AbstractMatrix2D a)
          Deprecated. A matrix A is square if it has the same number of rows and columns.
 



Copyright © 2008-2010 The Apache Software Foundation. All Rights Reserved.