Uses of Class
org.apache.mahout.math.matrix.DoubleMatrix1D

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

Uses of DoubleMatrix1D in org.apache.mahout.math.matrix
 

Methods in org.apache.mahout.math.matrix that return DoubleMatrix1D
 DoubleMatrix1D DoubleMatrix1D.assign(DoubleMatrix1D other)
          Deprecated. Replaces all cell values of the receiver with the values of another matrix.
 DoubleMatrix1D DoubleMatrix1D.assign(DoubleMatrix1D y, DoubleDoubleFunction function)
          Deprecated. Assigns the result of a function to each cell; x[i] = function(x[i],y[i]).
 DoubleMatrix1D DoubleMatrix1D.copy()
          Deprecated. Constructs and returns a deep copy of the receiver.
protected  DoubleMatrix1D DoubleMatrix1D.getContent()
          Deprecated. Returns the content of this matrix if it is a wrapper; or this otherwise.
 DoubleMatrix1D DoubleMatrix1D.like()
          Deprecated. Construct and returns a new empty matrix of the same dynamic type as the receiver, having the same size.
abstract  DoubleMatrix1D DoubleMatrix1D.like(int size)
          Deprecated. Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified size.
abstract  DoubleMatrix1D DoubleMatrix2D.like1D(int size)
          Deprecated. Construct and returns a new 1-d matrix of the corresponding dynamic type, entirelly independent of the receiver.
protected abstract  DoubleMatrix1D DoubleMatrix2D.like1D(int size, int zero, int stride)
          Deprecated. Construct and returns a new 1-d matrix of the corresponding dynamic type, sharing the same cells.
protected  DoubleMatrix1D DoubleMatrix1D.view()
          Deprecated. Constructs and returns a new view equal to the receiver.
 DoubleMatrix1D DoubleMatrix2D.viewColumn(int column)
          Deprecated. Constructs and returns a new slice view representing the rows of the given column.
 DoubleMatrix1D DoubleMatrix1D.viewPart(int index, int width)
          Deprecated. Constructs and returns a new sub-range view that is a width sub matrix starting at index.
 DoubleMatrix1D DoubleMatrix2D.viewRow(int row)
          Deprecated. Constructs and returns a new slice view representing the columns of the given row.
protected abstract  DoubleMatrix1D DoubleMatrix1D.viewSelectionLike(int[] offsets)
          Deprecated. Construct and returns a new selection view.
 DoubleMatrix1D DoubleMatrix2D.zMult(DoubleMatrix1D y, DoubleMatrix1D z, double alpha, double beta, boolean transposeA)
          Deprecated. Linear algebraic matrix-vector multiplication; z = alpha * A * y + beta*z.
 

Methods in org.apache.mahout.math.matrix with parameters of type DoubleMatrix1D
 double DoubleMatrix1D.aggregate(DoubleMatrix1D other, DoubleDoubleFunction aggr, DoubleDoubleFunction f)
          Deprecated. Applies a function to each corresponding cell of two matrices and aggregates the results.
 DoubleMatrix1D DoubleMatrix1D.assign(DoubleMatrix1D other)
          Deprecated. Replaces all cell values of the receiver with the values of another matrix.
 DoubleMatrix1D DoubleMatrix1D.assign(DoubleMatrix1D y, DoubleDoubleFunction function)
          Deprecated. Assigns the result of a function to each cell; x[i] = function(x[i],y[i]).
 void DoubleMatrix1D.assign(DoubleMatrix1D y, DoubleDoubleFunction function, org.apache.mahout.math.list.IntArrayList nonZeroIndexes)
          Deprecated. Assigns the result of a function to each cell; x[i] = function(x[i],y[i]).
protected  boolean DoubleMatrix1D.haveSharedCells(DoubleMatrix1D other)
          Deprecated. Returns true if both matrices share at least one identical cell.
protected  boolean DoubleMatrix1D.haveSharedCellsRaw(DoubleMatrix1D other)
          Deprecated. Returns true if both matrices share at least one identical cell.
 void DoubleMatrix1D.swap(DoubleMatrix1D other)
          Deprecated. Swaps each element this[i] with other[i].
 double DoubleMatrix1D.zDotProduct(DoubleMatrix1D y)
          Deprecated. Returns the dot product of two vectors x and y, which is Sum(x[i]*y[i]).
protected  double DoubleMatrix1D.zDotProduct(DoubleMatrix1D y, org.apache.mahout.math.list.IntArrayList nonZeroIndexes)
          Deprecated. Returns the dot product of two vectors x and y, which is Sum(x[i]*y[i]).
 double DoubleMatrix1D.zDotProduct(DoubleMatrix1D y, int from, int length)
          Deprecated. Returns the dot product of two vectors x and y, which is Sum(x[i]*y[i]).
 double DoubleMatrix1D.zDotProduct(DoubleMatrix1D y, int from, int length, org.apache.mahout.math.list.IntArrayList nonZeroIndexes)
          Deprecated. Returns the dot product of two vectors x and y, which is Sum(x[i]*y[i]).
 DoubleMatrix1D DoubleMatrix2D.zMult(DoubleMatrix1D y, DoubleMatrix1D z, double alpha, double beta, boolean transposeA)
          Deprecated. Linear algebraic matrix-vector multiplication; z = alpha * A * y + beta*z.
 

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

Subclasses of DoubleMatrix1D in org.apache.mahout.math.matrix.impl
 class DenseDoubleMatrix1D
          Deprecated. until unit tests are in place. Until this time, this class/interface is unsupported.
 class SparseDoubleMatrix1D
          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 DoubleMatrix1D
 DoubleMatrix1D DenseDoubleMatrix1D.assign(DoubleMatrix1D source)
          Deprecated. Replaces all cell values of the receiver with the values of another matrix.
 DoubleMatrix1D DenseDoubleMatrix1D.assign(DoubleMatrix1D y, DoubleDoubleFunction function)
          Deprecated. Assigns the result of a function to each cell; x[i] = function(x[i],y[i]).
 DoubleMatrix1D SparseDoubleMatrix1D.like(int size)
          Deprecated. Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified size.
 DoubleMatrix1D DenseDoubleMatrix1D.like(int size)
          Deprecated. Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified size.
 DoubleMatrix1D SparseDoubleMatrix2D.like1D(int size)
          Deprecated. Construct and returns a new 1-d matrix of the corresponding dynamic type, entirelly independent of the receiver.
 DoubleMatrix1D DenseDoubleMatrix2D.like1D(int size)
          Deprecated. Construct and returns a new 1-d matrix of the corresponding dynamic type, entirelly independent of the receiver.
protected  DoubleMatrix1D SparseDoubleMatrix2D.like1D(int size, int offset, int stride)
          Deprecated. Construct and returns a new 1-d matrix of the corresponding dynamic type, sharing the same cells.
protected  DoubleMatrix1D DenseDoubleMatrix2D.like1D(int size, int zero, int stride)
          Deprecated. Construct and returns a new 1-d matrix of the corresponding dynamic type, sharing the same cells.
protected  DoubleMatrix1D SparseDoubleMatrix1D.viewSelectionLike(int[] offsets)
          Deprecated. Construct and returns a new selection view.
protected  DoubleMatrix1D DenseDoubleMatrix1D.viewSelectionLike(int[] offsets)
          Deprecated. Construct and returns a new selection view.
 DoubleMatrix1D SparseDoubleMatrix2D.zMult(DoubleMatrix1D y, DoubleMatrix1D z, double alpha, double beta, boolean transposeA)
          Deprecated.  
 DoubleMatrix1D DenseDoubleMatrix2D.zMult(DoubleMatrix1D y, DoubleMatrix1D z, double alpha, double beta, boolean transposeA)
          Deprecated.  
 

Methods in org.apache.mahout.math.matrix.impl with parameters of type DoubleMatrix1D
 DoubleMatrix1D DenseDoubleMatrix1D.assign(DoubleMatrix1D source)
          Deprecated. Replaces all cell values of the receiver with the values of another matrix.
 DoubleMatrix1D DenseDoubleMatrix1D.assign(DoubleMatrix1D y, DoubleDoubleFunction function)
          Deprecated. Assigns the result of a function to each cell; x[i] = function(x[i],y[i]).
protected  boolean SparseDoubleMatrix1D.haveSharedCellsRaw(DoubleMatrix1D other)
          Deprecated. Returns true if both matrices share at least one identical cell.
protected  boolean DenseDoubleMatrix1D.haveSharedCellsRaw(DoubleMatrix1D other)
          Deprecated. Returns true if both matrices share at least one identical cell.
 void DenseDoubleMatrix1D.swap(DoubleMatrix1D other)
          Deprecated. Swaps each element this[i] with other[i].
 double DenseDoubleMatrix1D.zDotProduct(DoubleMatrix1D y, int from, int length)
          Deprecated. Returns the dot product of two vectors x and y, which is Sum(x[i]*y[i]).
 DoubleMatrix1D SparseDoubleMatrix2D.zMult(DoubleMatrix1D y, DoubleMatrix1D z, double alpha, double beta, boolean transposeA)
          Deprecated.  
 DoubleMatrix1D DenseDoubleMatrix2D.zMult(DoubleMatrix1D y, DoubleMatrix1D z, double alpha, double beta, boolean transposeA)
          Deprecated.  
 

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

Methods in org.apache.mahout.math.matrix.linalg that return DoubleMatrix1D
 DoubleMatrix1D EigenvalueDecomposition.getImagEigenvalues()
          Deprecated. Returns the imaginary parts of the eigenvalues.
 DoubleMatrix1D EigenvalueDecomposition.getRealEigenvalues()
          Deprecated. Returns the real parts of the eigenvalues.
 

Methods in org.apache.mahout.math.matrix.linalg with parameters of type DoubleMatrix1D
 boolean Property.equals(DoubleMatrix1D a, double value)
          Deprecated. Returns whether all cells of the given matrix A are equal to the given value.
 boolean Property.equals(DoubleMatrix1D a, DoubleMatrix1D b)
          Deprecated. Returns whether both given matrices A and B are equal.
 



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