Packages

object DenseVector extends VectorConstructors[DenseVector] with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DenseVector
  2. Serializable
  3. VectorConstructors
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class CanZipMapKeyValuesDenseVector[V, RV] extends CanZipMapKeyValues[DenseVector[V], Int, V, RV, DenseVector[RV]]
  2. class CanZipMapValuesDenseVector[V, RV] extends CanZipMapValues[DenseVector[V], V, RV, DenseVector[RV]]
  3. case class SerializedForm(data: Array[_], offset: Int, stride: Int, length: Int) extends Serializable with Product

    This class exists because @specialized instances don't respect the serial

    This class exists because @specialized instances don't respect the serial

    Annotations
    @SerialVersionUID()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. implicit def DV_canMapValues[V, V2](implicit man: ClassTag[V2]): CanMapValues[DenseVector[V], V, V2, DenseVector[V2]]
  5. implicit def DV_scalarOf[T]: ScalarOf[DenseVector[T], T]
  6. def apply[V](values: Array[V]): DenseVector[V]

    Creates a vector with the specified elements

    Creates a vector with the specified elements

    Definition Classes
    DenseVectorVectorConstructors
  7. def apply[V](values: V*)(implicit arg0: ClassTag[V]): DenseVector[V]

    Creates a vector with the specified elements

    Creates a vector with the specified elements

    Definition Classes
    VectorConstructors
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. implicit def canCopyDenseVector[V](implicit arg0: ClassTag[V]): CanCopy[DenseVector[V]]
  10. implicit def canCreateZeros[V](implicit arg0: ClassTag[V], arg1: Zero[V]): CanCreateZeros[DenseVector[V], Int]
    Definition Classes
    VectorConstructors
  11. implicit def canCreateZerosLike[V](implicit arg0: ClassTag[V], arg1: Zero[V]): CanCreateZerosLike[DenseVector[V], DenseVector[V]]
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  13. def create[V](data: Array[V], offset: Int, stride: Int, length: Int): DenseVector[V]

    Creates a new DenseVector using the provided array (not making a copy!).

    Creates a new DenseVector using the provided array (not making a copy!). In generic contexts, prefer to use this (or apply) instead of new DenseVector[V](data, offset, stride, length), which in general won't give specialized implementations.

  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. def fill[V](size: Int, v: V)(implicit arg0: ClassTag[V], arg1: Semiring[V]): DenseVector[V]
  17. def fill[V](size: Int)(v: => V)(implicit arg0: ClassTag[V]): DenseVector[V]

    Analogous to Array.fill

  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  20. def horzcat[V](vectors: DenseVector[V]*)(implicit arg0: ClassTag[V], arg1: Zero[V]): DenseMatrix[V]

    Horizontal concatenation of two or more vectors into one matrix.

    Horizontal concatenation of two or more vectors into one matrix.

    Exceptions thrown

    IllegalArgumentException if vectors have different sizes

  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  25. def ones[V](size: Int)(implicit arg0: ClassTag[V], arg1: Semiring[V]): DenseVector[V]
  26. def rand[T](size: Int, rand: Rand[T] = Rand.uniform)(implicit arg0: ClassTag[T]): DenseVector[T]

    Creates a Vector of uniform random numbers in (0,1)

    Creates a Vector of uniform random numbers in (0,1)

    Definition Classes
    VectorConstructors
  27. def range(start: Int, end: Int, step: Int): DenseVector[Int]
    Definition Classes
    VectorConstructors
  28. def range(start: Int, end: Int): DenseVector[Int]
    Definition Classes
    VectorConstructors
  29. def rangeD(start: Double, end: Double, step: Double = 1.0): DenseVector[Double]
    Definition Classes
    VectorConstructors
  30. def rangeF(start: Float, end: Float, step: Float = 1.0f): DenseVector[Float]
    Definition Classes
    VectorConstructors
  31. implicit def space[E](implicit field: Field[E], man: ClassTag[E]): MutableFiniteCoordinateField[DenseVector[E], Int, E]
  32. implicit val space_Double: MutableFiniteCoordinateField[DenseVector[Double], Int, Double]
  33. implicit val space_Float: MutableFiniteCoordinateField[DenseVector[Float], Int, Float]
  34. implicit val space_Int: MutableFiniteCoordinateField[DenseVector[Int], Int, Int]
  35. implicit val space_Long: MutableFiniteCoordinateField[DenseVector[Long], Int, Long]
  36. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  37. def tabulate[V](range: Range)(f: (Int) => V)(implicit arg0: ClassTag[V]): DenseVector[V]

    Analogous to Array.tabulate, but taking a scala.Range to iterate over, instead of an index.

  38. def tabulate[V](size: Int)(f: (Int) => V)(implicit arg0: ClassTag[V]): DenseVector[V]

    Analogous to Array.tabulate

  39. def toString(): String
    Definition Classes
    AnyRef → Any
  40. def vertcat[V](vectors: DenseVector[V]*)(implicit canSet: operators.OpSet.InPlaceImpl2[DenseVector[V], DenseVector[V]], vman: ClassTag[V], zero: Zero[V]): DenseVector[V]

    Vertical concatenation of two or more column vectors into one large vector.

  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  43. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  44. def zeros[V](size: Int)(implicit arg0: ClassTag[V], arg1: Zero[V]): DenseVector[V]

    Creates a Vector of size size.

    Creates a Vector of size size.

    Definition Classes
    DenseVectorVectorConstructors
  45. implicit def zipMap[V, R](implicit arg0: ClassTag[R]): CanZipMapValuesDenseVector[V, R]
  46. implicit def zipMapKV[V, R](implicit arg0: ClassTag[R]): CanZipMapKeyValuesDenseVector[V, R]
  47. implicit val zipMap_d: CanZipMapValuesDenseVector[Double, Double]
  48. implicit val zipMap_f: CanZipMapValuesDenseVector[Float, Float]
  49. implicit val zipMap_i: CanZipMapValuesDenseVector[Int, Int]
  50. object TupleIsomorphisms

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped