org.apache.spark.mllib

linalg

package linalg

Visibility
  1. Public
  2. All

Type Members

  1. class DenseMatrix extends Matrix

    Column-major dense matrix.

  2. class DenseVector extends Vector

    A dense vector represented by a value array.

  3. sealed trait Matrix extends Serializable

    Trait for a local matrix.

  4. case class QRDecomposition[QType, RType](Q: QType, R: RType) extends Product with Serializable

    :: Experimental :: Represents QR factors.

  5. case class SingularValueDecomposition[UType, VType](U: UType, s: Vector, V: VType) extends Product with Serializable

    Represents singular value decomposition (SVD) factors.

  6. class SparseMatrix extends Matrix

    Column-major sparse matrix.

  7. class SparseVector extends Vector

    A sparse vector represented by an index array and an value array.

  8. sealed trait Vector extends Serializable

    Represents a numeric vector, whose index type is Int and value type is Double.

  9. class VectorUDT extends UserDefinedType[Vector]

    :: AlphaComponent ::

Value Members

  1. object DenseMatrix extends Serializable

    Factory methods for org.apache.spark.mllib.linalg.DenseMatrix.

  2. object DenseVector extends Serializable

    Annotations
    @Since( "1.3.0" )
  3. object Matrices

    Factory methods for org.apache.spark.mllib.linalg.Matrix.

  4. object SparseMatrix extends Serializable

    Factory methods for org.apache.spark.mllib.linalg.SparseMatrix.

  5. object SparseVector extends Serializable

    Annotations
    @Since( "1.3.0" )
  6. object Vectors

    Factory methods for org.apache.spark.mllib.linalg.Vector.

  7. package distributed

Ungrouped