org.apache.spark.mllib.linalg.distributed
Class MatrixEntry

Object
  extended by org.apache.spark.mllib.linalg.distributed.MatrixEntry
All Implemented Interfaces:
java.io.Serializable, scala.Equals, scala.Product

public class MatrixEntry
extends Object
implements scala.Product, scala.Serializable

:: Experimental :: Represents an entry in an distributed matrix. param: i row index param: j column index param: value value of the entry

See Also:
Serialized Form

Constructor Summary
MatrixEntry(long i, long j, double value)
           
 
Method Summary
 long i()
           
 long j()
           
 double value()
           
 
Methods inherited from class Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface scala.Product
productArity, productElement, productIterator, productPrefix
 
Methods inherited from interface scala.Equals
canEqual, equals
 

Constructor Detail

MatrixEntry

public MatrixEntry(long i,
                   long j,
                   double value)
Method Detail

i

public long i()

j

public long j()

value

public double value()