breeze.linalg

SparseVector

class SparseVector[E] extends StorageVector[E] with VectorLike[E, SparseVector[E]] with Serializable

A Binary-search backed vector. There is a parallel array of ints (in 0 until length) and values, sorted by index value. To quickly access all stored values use the following loop:

var offset = 0
while( offset < v.activeSize) {
  val index: Int = v.indexAt(offset)
  val value: E = v.valueAt(offset)

  offset += 1
}
Annotations
@SerialVersionUID( 1 )
Linear Supertypes
Serializable, Serializable, StorageVector[E], Storage[E], Vector[E], VectorLike[E, SparseVector[E]], Tensor[Int, E], TensorLike[Int, E, SparseVector[E]], NumericOps[SparseVector[E]], QuasiTensor[Int, E], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SparseVector
  2. Serializable
  3. Serializable
  4. StorageVector
  5. Storage
  6. Vector
  7. VectorLike
  8. Tensor
  9. TensorLike
  10. NumericOps
  11. QuasiTensor
  12. AnyRef
  13. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SparseVector(index: Array[Int], data: Array[E], length: Int)(implicit value: DefaultArrayValue[E])

    This auxiliary constructor assumes that the index array is already sorted.

  2. new SparseVector(index: Array[Int], data: Array[E], activeSize: Int, length: Int)(implicit value: DefaultArrayValue[E])

    This auxiliary constructor assumes that the index array is already sorted.

  3. new SparseVector(array: SparseArray[E])(implicit value: DefaultArrayValue[E])

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def %[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpMod.Impl2[TT, B, That]): That

    Alias for :%(b) when b is a scalar.

    Alias for :%(b) when b is a scalar.

    Definition Classes
    NumericOps
  5. final def %=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpMod.InPlaceImpl2[TT, B]): SparseVector[E]

    Alias for :%=(b) when b is a scalar.

    Alias for :%=(b) when b is a scalar.

    Definition Classes
    NumericOps
  6. final def &[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpAnd.Impl2[TT, B, That]): That

    Alias for :&&(b) for all b.

    Alias for :&&(b) for all b.

    Definition Classes
    NumericOps
  7. final def &=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpAnd.InPlaceImpl2[TT, B]): SparseVector[E]

    Mutates this by element-wise and of this and b.

    Mutates this by element-wise and of this and b.

    Definition Classes
    NumericOps
  8. final def *[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpMulMatrix.Impl2[TT, B, That]): That

    Matrix multiplication

    Matrix multiplication

    Definition Classes
    NumericOps
  9. final def *=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpMulScalar.InPlaceImpl2[TT, B]): SparseVector[E]

    Alias for :*=(b) when b is a scalar.

    Alias for :*=(b) when b is a scalar.

    Definition Classes
    NumericOps
  10. final def +[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpAdd.Impl2[TT, B, That]): That

    Alias for :+(b) for all b.

    Alias for :+(b) for all b.

    Definition Classes
    NumericOps
  11. final def +=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpAdd.InPlaceImpl2[TT, B]): SparseVector[E]

    Alias for :+=(b) for all b.

    Alias for :+=(b) for all b.

    Definition Classes
    NumericOps
  12. final def -[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpSub.Impl2[TT, B, That]): That

    Alias for :-(b) for all b.

    Alias for :-(b) for all b.

    Definition Classes
    NumericOps
  13. final def -=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpSub.InPlaceImpl2[TT, B]): SparseVector[E]

    Alias for :-=(b) for all b.

    Alias for :-=(b) for all b.

    Definition Classes
    NumericOps
  14. final def /[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpDiv.Impl2[TT, B, That]): That

    Alias for :/(b) when b is a scalar.

    Alias for :/(b) when b is a scalar.

    Definition Classes
    NumericOps
  15. final def /=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpDiv.InPlaceImpl2[TT, B]): SparseVector[E]

    Alias for :/=(b) when b is a scalar.

    Alias for :/=(b) when b is a scalar.

    Definition Classes
    NumericOps
  16. final def :!=[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpNe.Impl2[TT, B, That]): That

    Element-wise inequality comparator of this and b.

    Element-wise inequality comparator of this and b.

    Definition Classes
    NumericOps
  17. final def :%[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpMod.Impl2[TT, B, That]): That

    Element-wise modulo of this and b.

    Element-wise modulo of this and b.

    Definition Classes
    NumericOps
  18. final def :%=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpMod.InPlaceImpl2[TT, B]): SparseVector[E]

    Mutates this by element-wise modulo of b into this.

    Mutates this by element-wise modulo of b into this.

    Definition Classes
    NumericOps
  19. final def :&[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpAnd.Impl2[TT, B, That]): That

    Element-wise logical "and" operator -- returns true if corresponding elements are non-zero.

    Element-wise logical "and" operator -- returns true if corresponding elements are non-zero.

    Definition Classes
    NumericOps
  20. final def :&=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpAnd.InPlaceImpl2[TT, B]): SparseVector[E]

    Mutates this by element-wise and of this and b.

    Mutates this by element-wise and of this and b.

    Definition Classes
    NumericOps
  21. final def :*[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpMulScalar.Impl2[TT, B, That]): That

    Element-wise product of this and b.

    Element-wise product of this and b.

    Definition Classes
    NumericOps
  22. final def :*=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpMulScalar.InPlaceImpl2[TT, B]): SparseVector[E]

    Mutates this by element-wise multiplication of b into this.

    Mutates this by element-wise multiplication of b into this.

    Definition Classes
    NumericOps
  23. final def :+[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpAdd.Impl2[TT, B, That]): That

    Element-wise sum of this and b.

    Element-wise sum of this and b.

    Definition Classes
    NumericOps
  24. final def :+=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpAdd.InPlaceImpl2[TT, B]): SparseVector[E]

    Mutates this by element-wise addition of b into this.

    Mutates this by element-wise addition of b into this.

    Definition Classes
    NumericOps
  25. final def :-[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpSub.Impl2[TT, B, That]): That

    Element-wise difference of this and b.

    Element-wise difference of this and b.

    Definition Classes
    NumericOps
  26. final def :-=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpSub.InPlaceImpl2[TT, B]): SparseVector[E]

    Mutates this by element-wise subtraction of b from this

    Mutates this by element-wise subtraction of b from this

    Definition Classes
    NumericOps
  27. final def :/[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpDiv.Impl2[TT, B, That]): That

    Element-wise quotient of this and b.

    Element-wise quotient of this and b.

    Definition Classes
    NumericOps
  28. final def :/=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpDiv.InPlaceImpl2[TT, B]): SparseVector[E]

    Mutates this by element-wise division of b into this

    Mutates this by element-wise division of b into this

    Definition Classes
    NumericOps
  29. final def :<[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpLT.Impl2[TT, B, That]): That

    Element-wise less=than comparator of this and b.

    Element-wise less=than comparator of this and b.

    Definition Classes
    NumericOps
  30. final def :<=[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpLTE.Impl2[TT, B, That]): That

    Element-wise less-than-or-equal-to comparator of this and b.

    Element-wise less-than-or-equal-to comparator of this and b.

    Definition Classes
    NumericOps
  31. final def :=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpSet.InPlaceImpl2[TT, B]): SparseVector[E]

    Mutates this by element-wise assignment of b into this.

    Mutates this by element-wise assignment of b into this.

    Definition Classes
    NumericOps
  32. final def :==[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpEq.Impl2[TT, B, That]): That

    Element-wise equality comparator of this and b.

    Element-wise equality comparator of this and b.

    Definition Classes
    NumericOps
  33. final def :>[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpGT.Impl2[TT, B, That]): That

    Element-wise greater-than comparator of this and b.

    Element-wise greater-than comparator of this and b.

    Definition Classes
    NumericOps
  34. final def :>=[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpGTE.Impl2[TT, B, That]): That

    Element-wise greater-than-or-equal-to comparator of this and b.

    Element-wise greater-than-or-equal-to comparator of this and b.

    Definition Classes
    NumericOps
  35. final def :^[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpPow.Impl2[TT, B, That]): That

    Element-wise exponentiation of this and b.

    Element-wise exponentiation of this and b.

    Definition Classes
    NumericOps
  36. final def :^=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpPow.InPlaceImpl2[TT, B]): SparseVector[E]

    Mutates this by element-wise exponentiation of this by b.

    Mutates this by element-wise exponentiation of this by b.

    Definition Classes
    NumericOps
  37. final def :^^[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpXor.Impl2[TT, B, That]): That

    Element-wise logical "xor" operator -- returns true if only one of the corresponding elements is non-zero.

    Element-wise logical "xor" operator -- returns true if only one of the corresponding elements is non-zero.

    Definition Classes
    NumericOps
  38. final def :^^=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpXor.InPlaceImpl2[TT, B]): SparseVector[E]

    Mutates this by element-wise xor of this and b.

    Mutates this by element-wise xor of this and b.

    Definition Classes
    NumericOps
  39. final def :|[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpOr.Impl2[TT, B, That]): That

    Element-wise logical "or" operator -- returns true if either element is non-zero.

    Element-wise logical "or" operator -- returns true if either element is non-zero.

    Definition Classes
    NumericOps
  40. final def :|=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpOr.InPlaceImpl2[TT, B]): SparseVector[E]

    Mutates this by element-wise or of this and b.

    Mutates this by element-wise or of this and b.

    Definition Classes
    NumericOps
  41. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  42. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  43. def \[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpSolveMatrixBy.Impl2[TT, B, That]): That

    Shaped solve of this by b.

    Shaped solve of this by b.

    Definition Classes
    NumericOps
  44. final def ^^[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpXor.Impl2[TT, B, That]): That

    Alias for :^^(b) for all b.

    Alias for :^^(b) for all b.

    Definition Classes
    NumericOps
  45. final def ^^=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpXor.InPlaceImpl2[TT, B]): SparseVector[E]

    Mutates this by element-wise xor of this and b.

    Mutates this by element-wise xor of this and b.

    Definition Classes
    NumericOps
  46. def active: TensorActive[Int, E, SparseVector[E]]

    Definition Classes
    TensorLike
  47. def activeIterator: Iterator[(Int, E)]

    Definition Classes
    SparseVectorQuasiTensor
  48. def activeKeysIterator: Iterator[Int]

    Definition Classes
    SparseVectorQuasiTensor
  49. def activeSize: Int

    How many elements are stored in terms of space.

    How many elements are stored in terms of space.

    returns

    Definition Classes
    SparseVectorStorageTensorLike
  50. def activeValuesIterator: Iterator[E]

    Definition Classes
    SparseVectorQuasiTensor
  51. def allVisitableIndicesActive: Boolean

    Only gives true if isActive would return true for all i.

    Only gives true if isActive would return true for all i. (May be false anyway)

    returns

    Definition Classes
    SparseVectorStorage
  52. def apply(i: Int): E

    Definition Classes
    SparseVectorTensorLikeQuasiTensor
  53. def apply[Slice1, Slice2, Result](slice1: Slice1, slice2: Slice2)(implicit canSlice: CanSlice2[SparseVector[E], Slice1, Slice2, Result]): Result

    Method for slicing that is tuned for Matrices.

    Method for slicing that is tuned for Matrices.

    returns

    Definition Classes
    TensorLike
  54. def apply[Result](a: Int, slice: Int*)(implicit canSlice: CanSlice[SparseVector[E], Seq[Int], Result]): Result

    Slice a sequence of elements.

    Slice a sequence of elements. Must be at least 2.

    Result
    a
    slice
    canSlice
    returns

    Definition Classes
    TensorLike
  55. def apply[Slice, Result](slice: Slice)(implicit canSlice: CanSlice[SparseVector[E], Slice, Result]): Result

    method for slicing a tensor.

    method for slicing a tensor. For instance, DenseVectors support efficient slicing by a Range object.

    returns

    Definition Classes
    TensorLike
  56. def argmax(implicit ord: Ordering[E]): Int

    Definition Classes
    QuasiTensor
  57. def argmin(implicit ord: Ordering[E]): Int

    Definition Classes
    QuasiTensor
  58. def argsort(implicit ord: Ordering[E]): IndexedSeq[Int]

    Definition Classes
    QuasiTensor
  59. def argtopk(k: Int)(implicit ordering: Ordering[E]): IndexedSeq[Int]

    Returns the k indices with maximum value.

    Returns the k indices with maximum value. (NOT absolute value.)

    k

    how many to return

    ordering
    returns

    Definition Classes
    QuasiTensor
  60. val array: SparseArray[E]

  61. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  62. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  63. def compact(): Unit

  64. def contains(i: Int): Boolean

  65. def copy: SparseVector[E]

    Definition Classes
    SparseVectorVectorLike
  66. def data: Array[E]

    Returns the actual flat array of elements used.

    Returns the actual flat array of elements used.

    returns

    Definition Classes
    SparseVectorStorage
  67. def default: E

    This is always assumed to be equal to 0, for now.

  68. final def dot[TT >: SparseVector[E], B, BB >: B, That](b: B)(implicit op: operators.OpMulInner.Impl2[TT, BB, That]): That

    Inner product of this and b.

    Inner product of this and b.

    Definition Classes
    NumericOps
  69. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  70. def equals(p1: Any): Boolean

    Definition Classes
    SparseVectorVector → AnyRef → Any
  71. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  72. def findAll(f: (E) ⇒ Boolean): IndexedSeq[Int]

    Returns all indices k whose value satisfies a predicate.

    Returns all indices k whose value satisfies a predicate.

    Definition Classes
    QuasiTensor
  73. def forall(fn: (Int, E) ⇒ Boolean): Boolean

    Returns true if and only if the given predicate is true for all elements.

    Returns true if and only if the given predicate is true for all elements.

    Definition Classes
    TensorLike
  74. def forallValues(fn: (E) ⇒ Boolean): Boolean

    Returns true if and only if the given predicate is true for all elements.

    Returns true if and only if the given predicate is true for all elements.

    Definition Classes
    TensorLike
  75. def foreach[U](fn: (E) ⇒ U): Unit

    Definition Classes
    VectorLike
  76. def foreachKey[U](fn: (Int) ⇒ U): Unit

    Applies the given function to each key in the tensor.

    Applies the given function to each key in the tensor.

    Definition Classes
    TensorLike
  77. def foreachPair[U](fn: (Int, E) ⇒ U): Unit

    Applies the given function to each key and its corresponding value.

    Applies the given function to each key and its corresponding value.

    Definition Classes
    TensorLike
  78. def foreachValue[U](fn: (E) ⇒ U): Unit

    Applies the given function to each value in the map (one for each element of the domain, including zeros).

    Applies the given function to each value in the map (one for each element of the domain, including zeros).

    Definition Classes
    TensorLike
  79. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  80. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  81. def index: Array[Int]

  82. def indexAt(i: Int): Int

    Gives the logical index from the physical index.

    Gives the logical index from the physical index.

    i
    returns

    Definition Classes
    SparseVectorStorage
  83. def isActive(rawIndex: Int): Boolean

    Some storages (namely HashStorage) won't have active indices packed.

    Some storages (namely HashStorage) won't have active indices packed. This lets you know if the bin is actively in use.

    returns

    Definition Classes
    SparseVectorStorage
  84. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  85. def iterableSize: Int

    How many elements must be iterated over using valueAt/indexAt.

    How many elements must be iterated over using valueAt/indexAt.

    returns

    Definition Classes
    Storage
  86. def iterator: Iterator[(Int, E)]

    Definition Classes
    VectorQuasiTensor
  87. def keySet: Set[Int]

    returns

    the set of keys in this vector (0 until length)

    Definition Classes
    VectorQuasiTensor
  88. def keys: TensorKeys[Int, E, SparseVector[E]]

    Definition Classes
    TensorLike
  89. def keysIterator: Iterator[Int]

    Definition Classes
    VectorQuasiTensor
  90. def length: Int

    Definition Classes
    SparseVectorVector
  91. def map[E2, That](fn: (E) ⇒ E2)(implicit canMapValues: CanMapValues[SparseVector[E], E, E2, That]): That

    Definition Classes
    VectorLike
  92. def mapActivePairs[TT >: SparseVector[E], O, That](f: (Int, E) ⇒ O)(implicit bf: CanMapKeyValuePairs[TT, Int, E, O, That]): That

    Maps all active key-value pairs values.

    Maps all active key-value pairs values.

    Definition Classes
    TensorLike
  93. def mapActiveValues[TT >: SparseVector[E], O, That](f: (E) ⇒ O)(implicit bf: CanMapValues[TT, E, O, That]): That

    Maps all non-zero values.

    Maps all non-zero values.

    Definition Classes
    TensorLike
  94. def mapPairs[TT >: SparseVector[E], O, That](f: (Int, E) ⇒ O)(implicit bf: CanMapKeyValuePairs[TT, Int, E, O, That]): That

    Creates a new map containing a transformed copy of this map.

    Creates a new map containing a transformed copy of this map.

    Definition Classes
    TensorLike
  95. def mapValues[TT >: SparseVector[E], O, That](f: (E) ⇒ O)(implicit bf: CanMapValues[TT, E, O, That]): That

    Creates a new map containing a transformed copy of this map.

    Creates a new map containing a transformed copy of this map.

    Definition Classes
    TensorLike
  96. def max(implicit ord: Ordering[E]): E

    Definition Classes
    QuasiTensor
  97. def min(implicit ord: Ordering[E]): E

    Definition Classes
    QuasiTensor
  98. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  99. final def norm[TT >: SparseVector[E], B, R](b: B)(implicit op: norm.Impl2[TT, B, R]): R

    Represents the norm of this vector

    Represents the norm of this vector

    Definition Classes
    NumericOps
  100. final def norm[TT >: SparseVector[E], R]()(implicit op: norm.Impl[TT, R]): R

    Represents the "natural" norm of this vector, for types that don't support arbitrary norms

    Represents the "natural" norm of this vector, for types that don't support arbitrary norms

    Definition Classes
    NumericOps
  101. final def notify(): Unit

    Definition Classes
    AnyRef
  102. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  103. def pairs: TensorPairs[Int, E, SparseVector[E]]

    Definition Classes
    TensorLike
  104. def repr: SparseVector[E]

    Definition Classes
    SparseVectorNumericOps
  105. def reserve(nnz: Int): Unit

  106. def size: Int

    Definition Classes
    VectorTensorLike
  107. def sum(implicit num: Numeric[E]): E

    Definition Classes
    QuasiTensor
  108. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  109. final def t[TT >: SparseVector[E], That, Slice1, Slice2, Result](a: Slice1, b: Slice2)(implicit op: CanTranspose[TT, That], canSlice: CanSlice2[That, Slice1, Slice2, Result]): Result

    A transposed view of this object, followed by a slice.

    A transposed view of this object, followed by a slice. Sadly frequently necessary.

    Definition Classes
    NumericOps
  110. final def t[TT >: SparseVector[E], That](implicit op: CanTranspose[TT, That]): That

    A transposed view of this object.

    A transposed view of this object.

    Definition Classes
    NumericOps
  111. def toArray(implicit cm: ClassTag[E]): Array[E]

    Definition Classes
    Vector
  112. def toDenseVector(implicit cm: ClassTag[E]): DenseVector[E]

    Definition Classes
    Vector
  113. def toString(): String

    Definition Classes
    SparseVector → AnyRef → Any
  114. final def unary_![TT >: SparseVector[E], That](implicit op: operators.OpNot.Impl[TT, That]): That

    Definition Classes
    NumericOps
  115. final def unary_-[TT >: SparseVector[E], That](implicit op: operators.OpNeg.Impl[TT, That]): That

    Definition Classes
    NumericOps
  116. def update(i: Int, v: E): Unit

    Definition Classes
    SparseVectorTensorLikeQuasiTensor
  117. def use(index: Array[Int], data: Array[E], activeSize: Int): Unit

    Sets the underlying sparse array to use this data

    Sets the underlying sparse array to use this data

    index

    must be a sorted list of indices

    data

    values corresponding to the index

    activeSize

    number of active elements. The first activeSize will be used.

  118. def used: Int

  119. def valueAt(i: Int): E

    same as data(i).

    same as data(i). Gives the value at the underlying offset.

    i

    index into the data array

    returns

    Definition Classes
    SparseVectorStorage
  120. def values: TensorValues[Int, E, SparseVector[E]]

    Definition Classes
    TensorLike
  121. def valuesIterator: Iterator[E]

    Definition Classes
    VectorQuasiTensor
  122. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  123. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  124. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  125. final def |[TT >: SparseVector[E], B, That](b: B)(implicit op: operators.OpOr.Impl2[TT, B, That]): That

    Alias for :||(b) for all b.

    Alias for :||(b) for all b.

    Definition Classes
    NumericOps
  126. final def |=[TT >: SparseVector[E], B](b: B)(implicit op: operators.OpOr.InPlaceImpl2[TT, B]): SparseVector[E]

    Mutates this by element-wise or of this and b.

    Mutates this by element-wise or of this and b.

    Definition Classes
    NumericOps

Deprecated Value Members

  1. def all(implicit semi: Semiring[E]): Boolean

    Returns true if all elements are non-zero

    Returns true if all elements are non-zero

    Definition Classes
    QuasiTensor
    Annotations
    @deprecated
    Deprecated

    (Since version 0.6) Use breeze.linalg.all instead

  2. def any(implicit semi: Semiring[E]): Boolean

    Returns true if some element is non-zero

    Returns true if some element is non-zero

    Definition Classes
    QuasiTensor
    Annotations
    @deprecated
    Deprecated

    (Since version 0.6) Use breeze.linalg.any instead

Inherited from Serializable

Inherited from Serializable

Inherited from StorageVector[E]

Inherited from Storage[E]

Inherited from Vector[E]

Inherited from VectorLike[E, SparseVector[E]]

Inherited from Tensor[Int, E]

Inherited from TensorLike[Int, E, SparseVector[E]]

Inherited from NumericOps[SparseVector[E]]

Inherited from QuasiTensor[Int, E]

Inherited from AnyRef

Inherited from Any

Ungrouped