Packages

class SparseVectorQ extends VectoQ

The SparseVectorQ class stores and operates on Numeric Vectors of base type Rational. It follows the framework of gen.VectorN [T] and is provided for performance.

Linear Supertypes
VectoQ, Serializable, Error, Vec, PartiallyOrdered[VectoQ], Iterable[Rational], IterableFactoryDefaults[Rational, Iterable], IterableOps[Rational, Iterable, Iterable[Rational]], IterableOnceOps[Rational, Iterable, Iterable[Rational]], IterableOnce[Rational], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SparseVectorQ
  2. VectoQ
  3. Serializable
  4. Error
  5. Vec
  6. PartiallyOrdered
  7. Iterable
  8. IterableFactoryDefaults
  9. IterableOps
  10. IterableOnceOps
  11. IterableOnce
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new SparseVectorQ(iv: (Int, Rational), dm: Int)

    Construct a vector and assign values from vector 'u'.

    Construct a vector and assign values from vector 'u'.

    iv

    the tuple containing (index, value)

    dm

    the dimension for the new vector

  2. new SparseVectorQ(u: VectoQ)

    Construct a vector and assign values from vector 'u'.

    Construct a vector and assign values from vector 'u'.

    u

    the other vector

  3. new SparseVectorQ(dim_: Int, v: RowMap = null)

    dim_

    the dimension/size of the vector

    v

    the SortedLinkedHashMap used to store vector elements

Type Members

  1. type AsPartiallyOrdered[B] = (B) => PartiallyOrdered[B]
    Definition Classes
    PartiallyOrdered

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def *(s: (Int, Rational)): SparseVectorQ

    Multiply 'this' vector by scalar 's._2' only at position 's._1', e.g., 'x * (3, 5.5).

    Multiply 'this' vector by scalar 's._2' only at position 's._1', e.g., 'x * (3, 5.5).

    s

    the (scalar, position) to multiply by

    Definition Classes
    SparseVectorQVectoQ
  4. def *(s: Rational): SparseVectorQ

    Multiply 'this' vector by scalar 's'.

    Multiply 'this' vector by scalar 's'.

    s

    the scalar to multiply by

    Definition Classes
    SparseVectorQVectoQ
  5. def *(b: VectoQ): SparseVectorQ

    Multiply 'this' vector by vector 'b'.

    Multiply 'this' vector by vector 'b'.

    b

    the vector to multiply by

    Definition Classes
    SparseVectorQVectoQ
  6. def *=(s: Rational): SparseVectorQ

    Multiply in-place 'this' vector and scalar 's'.

    Multiply in-place 'this' vector and scalar 's'.

    s

    the scalar to multiply by

    Definition Classes
    SparseVectorQVectoQ
  7. def *=(b: VectoQ): SparseVectorQ

    Multiply in-place 'this' vector and vector 'b'.

    Multiply in-place 'this' vector and vector 'b'.

    b

    the vector to multiply by

    Definition Classes
    SparseVectorQVectoQ
  8. def +(s: (Int, Rational)): SparseVectorQ

    Add 'this' vector and scalar 's._2' only at position 's._1' e.g., 'x + (3, 5.5).

    Add 'this' vector and scalar 's._2' only at position 's._1' e.g., 'x + (3, 5.5).

    s

    the (scalar, position) to add

    Definition Classes
    SparseVectorQVectoQ
  9. def +(s: Rational): SparseVectorQ

    Add 'this' vector and scalar 's'.

    Add 'this' vector and scalar 's'.

    s

    the scalar to add

    Definition Classes
    SparseVectorQVectoQ
  10. def +(b: VectoQ): SparseVectorQ

    Add 'this' vector and vector 'b'.

    Add 'this' vector and vector 'b'.

    b

    the vector to add

    Definition Classes
    SparseVectorQVectoQ
  11. def ++(s: Rational): SparseVectorQ

    Concatenate 'this' vector and scalar 's'.

    Concatenate 'this' vector and scalar 's'.

    s

    the scalar to be concatenated

    Definition Classes
    SparseVectorQVectoQ
  12. def ++(b: VectoQ): SparseVectorQ

    Concatenate 'this' vector and vector' b'.

    Concatenate 'this' vector and vector' b'.

    b

    the vector to be concatenated

    Definition Classes
    SparseVectorQVectoQ
  13. final def ++[B >: Rational](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  14. def +=(s: Rational): SparseVectorQ

    Add in-place 'this' vector and scalar 's'.

    Add in-place 'this' vector and scalar 's'.

    s

    the scalar to add

    Definition Classes
    SparseVectorQVectoQ
  15. def +=(b: VectoQ): SparseVectorQ

    Add in-place 'this' vector and vector 'b'.

    Add in-place 'this' vector and vector 'b'.

    b

    the vector to add

    Definition Classes
    SparseVectorQVectoQ
  16. def -(s: (Int, Rational)): SparseVectorQ

    From 'this' vector subtract scalar 's._2' only at position 's._1', e.g., 'x - (3, 5.5).

    From 'this' vector subtract scalar 's._2' only at position 's._1', e.g., 'x - (3, 5.5).

    s

    the (scalar, position) to subtract

    Definition Classes
    SparseVectorQVectoQ
  17. def -(s: Rational): SparseVectorQ

    From 'this' vector subtract scalar 's'.

    From 'this' vector subtract scalar 's'.

    s

    the scalar to subtract

    Definition Classes
    SparseVectorQVectoQ
  18. def -(b: VectoQ): SparseVectorQ

    From 'this' vector subtract vector 'b'.

    From 'this' vector subtract vector 'b'.

    b

    the vector to subtract

    Definition Classes
    SparseVectorQVectoQ
  19. def -=(s: Rational): SparseVectorQ

    From 'this' vector subtract in-place scalar 's'.

    From 'this' vector subtract in-place scalar 's'.

    s

    the scalar to subtract

    Definition Classes
    SparseVectorQVectoQ
  20. def -=(b: VectoQ): SparseVectorQ

    From 'this' vector subtract in-place vector 'b'.

    From 'this' vector subtract in-place vector 'b'.

    b

    the vector to subtract

    Definition Classes
    SparseVectorQVectoQ
  21. def /(s: (Int, Rational)): SparseVectorQ

    Divide 'this' vector by scalar 's._2' only at position 's._1', e.g., 'x / (3, 5.5).

    Divide 'this' vector by scalar 's._2' only at position 's._1', e.g., 'x / (3, 5.5).

    s

    the (scalar, position) to divide by

    Definition Classes
    SparseVectorQVectoQ
  22. def /(s: Rational): SparseVectorQ

    Divide 'this' vector by scalar 's'.

    Divide 'this' vector by scalar 's'.

    s

    the scalar to divide by

    Definition Classes
    SparseVectorQVectoQ
  23. def /(b: VectoQ): SparseVectorQ

    Divide 'this' vector by vector 'b' (element-by-element).

    Divide 'this' vector by vector 'b' (element-by-element).

    b

    the vector to divide by

    Definition Classes
    SparseVectorQVectoQ
  24. def /=(s: Rational): SparseVectorQ

    Divide in-place 'this' vector and scalar 's'.

    Divide in-place 'this' vector and scalar 's'.

    s

    the scalar to divide by

    Definition Classes
    SparseVectorQVectoQ
  25. def /=(b: VectoQ): SparseVectorQ

    Divide in-place 'this' vector and vector 'b'.

    Divide in-place 'this' vector and vector 'b'.

    b

    the vector to divide by

    Definition Classes
    SparseVectorQVectoQ
  26. def <[B >: VectoQ](that: B)(implicit arg0: AsPartiallyOrdered[B]): Boolean
    Definition Classes
    PartiallyOrdered
  27. def <=[B >: VectoQ](that: B)(implicit arg0: AsPartiallyOrdered[B]): Boolean
    Definition Classes
    PartiallyOrdered
  28. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  29. def >[B >: VectoQ](that: B)(implicit arg0: AsPartiallyOrdered[B]): Boolean
    Definition Classes
    PartiallyOrdered
  30. def >=[B >: VectoQ](that: B)(implicit arg0: AsPartiallyOrdered[B]): Boolean
    Definition Classes
    PartiallyOrdered
  31. def _oneAt(j: Int, size: Int = dim): SparseVectorQ

    Create a vector of the form (0, ...

    Create a vector of the form (0, ... -1, ... 0) where the -1 is at position j.

    j

    the position to place the -1

    size

    the size of the vector (upper bound = size - 1)

    Definition Classes
    SparseVectorQVectoQ
  32. def abs: SparseVectorQ

    Return the vector that is the element-wise absolute value of 'this' vector.

    Return the vector that is the element-wise absolute value of 'this' vector.

    Definition Classes
    SparseVectorQVectoQ
  33. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  34. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  35. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  36. def apply(): IndexedSeq[Rational]

    Get 'this' vector's entire array.

    Get 'this' vector's entire array.

    Definition Classes
    SparseVectorQVectoQ
  37. def apply(r: Range): SparseVectorQ

    Get 'this' vector's elements within the given range (vector slicing).

    Get 'this' vector's elements within the given range (vector slicing).

    r

    the given range

    Definition Classes
    SparseVectorQVectoQ
  38. def apply(i: Int): Rational

    Get 'this' vector's element at the 'i'-th index position.

    Get 'this' vector's element at the 'i'-th index position.

    i

    the given index

    Definition Classes
    SparseVectorQVectoQ
  39. def apply(iv: VectoI): VectoQ

    Get 'this' vector's elements that are given in the index vector.

    Get 'this' vector's elements that are given in the index vector.

    iv

    the index vector

    Definition Classes
    VectoQ
  40. def argmax(s: Int, e: Int): Int

    Find the argument maximum of 'this' vector (index of maximum element).

    Find the argument maximum of 'this' vector (index of maximum element).

    s

    the starting index (inclusive) for the search

    e

    the ending index (exclusive) for the search

    Definition Classes
    SparseVectorQVectoQ
  41. def argmax(e: Int = dim): Int

    Find the argument maximum of 'this' vector (index of maximum element).

    Find the argument maximum of 'this' vector (index of maximum element).

    e

    the ending index (exclusive) for the search

    Definition Classes
    SparseVectorQVectoQ
  42. def argmaxPos(e: Int = dim): Int

    Return the argument maximum of 'this' vector (-1 if its not positive).

    Return the argument maximum of 'this' vector (-1 if its not positive).

    e

    the ending index (exclusive) for the search

    Definition Classes
    SparseVectorQVectoQ
  43. def argmin(s: Int, e: Int): Int

    Find the argument minimum of 'this' vector (index of minimum element).

    Find the argument minimum of 'this' vector (index of minimum element).

    s

    the starting index (inclusive) for the search

    e

    the ending index (exclusive) for the search

    Definition Classes
    SparseVectorQVectoQ
  44. def argmin(e: Int = dim): Int

    Find the argument minimum of 'this' vector (index of minimum element).

    Find the argument minimum of 'this' vector (index of minimum element).

    e

    the ending index (exclusive) for the search

    Definition Classes
    SparseVectorQVectoQ
  45. def argminNeg(e: Int = dim): Int

    Return the argument minimum of 'this' vector (-1 if its not negative).

    Return the argument minimum of 'this' vector (-1 if its not negative).

    e

    the ending index (exclusive) for the search

    Definition Classes
    SparseVectorQVectoQ
  46. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  47. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  48. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  49. final def coll: SparseVectorQ.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  50. def collect[B](pf: PartialFunction[Rational, B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  51. def collectFirst[B](pf: PartialFunction[Rational, B]): Option[B]
    Definition Classes
    IterableOnceOps
  52. def concat[B >: Rational](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  53. def contains(x: Rational): Boolean

    Determine whether 'x' is contained in 'this' vector.

    Determine whether 'x' is contained in 'this' vector.

    x

    the element to be checked

    Definition Classes
    SparseVectorQVectoQ
  54. def copy: SparseVectorQ

    Create an exact copy of 'this' vector.

    Create an exact copy of 'this' vector.

    Definition Classes
    SparseVectorQVectoQ
  55. def copyToArray[B >: Rational](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  56. def copyToArray[B >: Rational](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  57. def copyToArray[B >: Rational](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  58. def corresponds[B](that: IterableOnce[B])(p: (Rational, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  59. def count(p: (Rational) => Boolean): Int
    Definition Classes
    IterableOnceOps
  60. def countNeg: Int

    Count the number of strictly negative elements in 'this' vector.

    Count the number of strictly negative elements in 'this' vector.

    Definition Classes
    SparseVectorQVectoQ
  61. def countPos: Int

    Count the number of strictly positive elements in 'this' vector.

    Count the number of strictly positive elements in 'this' vector.

    Definition Classes
    SparseVectorQVectoQ
  62. def countZero: Int

    Count the number of zero elements in 'this' vector.

    Count the number of zero elements in 'this' vector.

    Definition Classes
    SparseVectorQVectoQ
  63. def countinct: Int

    Count the number of distinct elements in 'this' vector.

    Count the number of distinct elements in 'this' vector.

    Definition Classes
    SparseVectorQVectoQ
  64. def cumulate: SparseVectorQ

    Cumulate the values of 'this' vector from left to right (e.g., create a CDF from a pmf).

    Cumulate the values of 'this' vector from left to right (e.g., create a CDF from a pmf). Example: (4, 2, 3, 1) --> (4, 6, 9, 10)

    Definition Classes
    SparseVectorQVectoQ
  65. lazy val dim: Int

    Dimension

    Dimension

    Definition Classes
    SparseVectorQVectoQ
  66. val dim_: Int
  67. def distinct: SparseVectorQ

    Return a new vector consisting of the distinct elements from 'this' vector.

    Return a new vector consisting of the distinct elements from 'this' vector.

    Definition Classes
    SparseVectorQVectoQ
  68. def dot(b: SparseVectorQ): Rational

    Compute the dot product (or inner product) of 'this' vector with vector 'b'.

    Compute the dot product (or inner product) of 'this' vector with vector 'b'.

    b

    the other vector

  69. def dot(b: VectoQ): Rational

    Compute the dot product (or inner product) of 'this' vector with vector 'b'.

    Compute the dot product (or inner product) of 'this' vector with vector 'b'.

    b

    the other vector

    Definition Classes
    SparseVectorQVectoQ
  70. def drop(n: Int): Iterable[Rational]
    Definition Classes
    IterableOps → IterableOnceOps
  71. def dropRight(n: Int): Iterable[Rational]
    Definition Classes
    IterableOps
  72. def dropWhile(p: (Rational) => Boolean): Iterable[Rational]
    Definition Classes
    IterableOps → IterableOnceOps
  73. def empty: Iterable[Rational]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  74. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  75. def equals(b: Any): Boolean

    Override equals to determine whether 'this' vector equals vector 'b..

    Override equals to determine whether 'this' vector equals vector 'b..

    b

    the vector to compare with this

    Definition Classes
    SparseVectorQVectoQ → AnyRef → Any
  76. def exists(p: (Rational) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  77. def expand(more: Int = dim): SparseVectorQ

    Expand the size (dim) of 'this' vector by 'more' elements.

    Expand the size (dim) of 'this' vector by 'more' elements.

    more

    the number of new elements to add

    Definition Classes
    SparseVectorQVectoQ
  78. val fString: String

    Format String used for printing vector values (change using 'setFormat') Ex: "%d,\t", "%.6g,\t" or "%12.6g,\t"

    Format String used for printing vector values (change using 'setFormat') Ex: "%d,\t", "%.6g,\t" or "%12.6g,\t"

    Attributes
    protected
    Definition Classes
    VectoQ
  79. def filter(p: (Rational) => Boolean): SparseVectorQ

    Filter the elements of 'this' vector based on the predicate 'p', returning a new vector.

    Filter the elements of 'this' vector based on the predicate 'p', returning a new vector.

    p

    the predicate (Boolean function) to apply

    Definition Classes
    SparseVectorQVectoQ → IterableOps → IterableOnceOps
  80. def filterMissing: SparseVectorQ

    Filter out the missing elements of 'this' vector based on the predicate that 'e != noRational'.

    Filter out the missing elements of 'this' vector based on the predicate that 'e != noRational'.

    Definition Classes
    SparseVectorQVectoQ
  81. def filterNot(pred: (Rational) => Boolean): Iterable[Rational]
    Definition Classes
    IterableOps → IterableOnceOps
  82. def filterPos(p: (Rational) => Boolean): IndexedSeq[Int]

    Filter the elements of 'this' vector based on the predicate 'p', returning the index positions.

    Filter the elements of 'this' vector based on the predicate 'p', returning the index positions.

    p

    the predicate (Boolean function) to apply

    Definition Classes
    SparseVectorQVectoQ
  83. def filterPos2(v2: VectoQ, p: (Rational, Rational) => Boolean): IndexedSeq[(Int, Int)]

    Filter the elements of 'this' vector and vector 'v2' based on the binary predicate 'p', returning the index positions for both vectors.

    Filter the elements of 'this' vector and vector 'v2' based on the binary predicate 'p', returning the index positions for both vectors.

    v2

    the other vector to compare with

    p

    the binary predicate (Boolean function) to apply

    Definition Classes
    SparseVectorQVectoQ
  84. def find(p: (Rational) => Boolean): Option[Rational]
    Definition Classes
    IterableOnceOps
  85. def firstNeg(e: Int = dim): Int

    Return the index of the first negative element in 'this' vector (-1 otherwise).

    Return the index of the first negative element in 'this' vector (-1 otherwise).

    e

    the ending index (exclusive) for the search

    Definition Classes
    SparseVectorQVectoQ
  86. def firstPos(e: Int = dim): Int

    Return the index of the first positive element in 'this' vector (-1 otherwise).

    Return the index of the first positive element in 'this' vector (-1 otherwise).

    e

    the ending index (exclusive) for the search

    Definition Classes
    SparseVectorQVectoQ
  87. def flatMap[B](f: (Rational) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  88. def flatten[B](implicit asIterable: (Rational) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  89. final def flaw(method: String, message: String): Unit

    Show the flaw by printing the error message.

    Show the flaw by printing the error message.

    method

    the method where the error occurred

    message

    the error message

    Definition Classes
    Error
  90. def fold[A1 >: Rational](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  91. def foldLeft[B](z: B)(op: (B, Rational) => B): B
    Definition Classes
    IterableOnceOps
  92. def foldRight[B](z: B)(op: (Rational, B) => B): B
    Definition Classes
    IterableOnceOps
  93. def forall(p: (Rational) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  94. def foreach[U](f: (Rational) => U): Unit

    Iterate over 'this' vector element by element.

    Iterate over 'this' vector element by element.

    f

    the function to apply

    Definition Classes
    SparseVectorQVectoQ → IterableOnceOps
  95. def fromSpecific(coll: IterableOnce[Rational]): Iterable[Rational]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  96. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  97. def groupBy[K](f: (Rational) => K): Map[K, Iterable[Rational]]
    Definition Classes
    IterableOps
  98. def groupMap[K, B](key: (Rational) => K)(f: (Rational) => B): Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  99. def groupMapReduce[K, B](key: (Rational) => K)(f: (Rational) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  100. def grouped(size: Int): Iterator[Iterable[Rational]]
    Definition Classes
    IterableOps
  101. def hashCode(): Int

    Must also override hashCode for 'this' vector to be compatible with equals.

    Must also override hashCode for 'this' vector to be compatible with equals.

    Definition Classes
    SparseVectorQVectoQ → AnyRef → Any
  102. def head: Rational
    Definition Classes
    IterableOps
  103. def headOption: Option[Rational]
    Definition Classes
    IterableOps
  104. def indexOf(x: Rational, e: Int = dim): Int

    Return the index of the first occurrence of element 'x' in 'this' vector, or -1 if not found.

    Return the index of the first occurrence of element 'x' in 'this' vector, or -1 if not found.

    x

    the given element

    e

    the ending index (exclusive) for the search

    Definition Classes
    SparseVectorQVectoQ
  105. def indexWhere(p: (Rational) => Boolean): Int

    Find and return index of first element satisfying predicate 'p', or -1 if not found.

    Find and return index of first element satisfying predicate 'p', or -1 if not found.

    p

    the predicate to check

    Definition Classes
    SparseVectorQVectoQ
  106. def indices: Range

    Produce the range of all indices (0 to one less than dim).

    Produce the range of all indices (0 to one less than dim).

    Definition Classes
    VectoQVec
  107. def init: Iterable[Rational]
    Definition Classes
    IterableOps
  108. def inits: Iterator[Iterable[Rational]]
    Definition Classes
    IterableOps
  109. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  110. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  111. def isNonnegative: Boolean

    Check whether 'this' vector is nonnegative (has no negative elements).

    Check whether 'this' vector is nonnegative (has no negative elements).

    Definition Classes
    SparseVectorQVectoQ
  112. def isSorted: Boolean

    Determine whether 'this' vector is in sorted (ascending) order.

    Determine whether 'this' vector is in sorted (ascending) order.

    Definition Classes
    SparseVectorQVectoQ
  113. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  114. def iterableFactory: IterableFactory[Iterable]
    Definition Classes
    Iterable → IterableOps
  115. def iterator: Iterator[Rational]

    Return an iterator which yields all the elements.

    Return an iterator which yields all the elements.

    Definition Classes
    SparseVectorQ → IterableOnce
  116. def knownSize: Int
    Definition Classes
    IterableOnce
  117. def last: Rational
    Definition Classes
    IterableOps
  118. def lastOption: Option[Rational]
    Definition Classes
    IterableOps
  119. def lazyZip[B](that: Iterable[B]): LazyZip2[Rational, B, SparseVectorQ.this.type]
    Definition Classes
    Iterable
  120. def mag: Rational

    Find the element with the greatest magnitude in 'this' vector.

    Find the element with the greatest magnitude in 'this' vector.

    Definition Classes
    VectoQ
  121. def map(f: (Rational) => Rational): SparseVectorQ

    Map the elements of 'this' vector by applying the mapping function 'f'.

    Map the elements of 'this' vector by applying the mapping function 'f'.

    f

    the function to apply

    Definition Classes
    SparseVectorQVectoQ
  122. def map[B](f: (Rational) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  123. def max(b: VectoQ): SparseVectorQ

    Take the maximum of 'this' vector with vector 'b' (element-by element).

    Take the maximum of 'this' vector with vector 'b' (element-by element).

    b

    the other vector

    Definition Classes
    SparseVectorQVectoQ
  124. def max(e: Int = dim): Rational

    Find the maximum element in 'this' vector.

    Find the maximum element in 'this' vector.

    e

    the ending index (exclusive) for the search

    Definition Classes
    SparseVectorQVectoQ
  125. def max[B >: Rational](implicit ord: Ordering[B]): Rational
    Definition Classes
    IterableOnceOps
  126. def maxBy[B](f: (Rational) => B)(implicit cmp: Ordering[B]): Rational
    Definition Classes
    IterableOnceOps
  127. def maxByOption[B](f: (Rational) => B)(implicit cmp: Ordering[B]): Option[Rational]
    Definition Classes
    IterableOnceOps
  128. def maxOption[B >: Rational](implicit ord: Ordering[B]): Option[Rational]
    Definition Classes
    IterableOnceOps
  129. def mean: Rational

    Compute the mean of the elements of 'this' vector.

    Compute the mean of the elements of 'this' vector.

    Definition Classes
    VectoQ
  130. def min(b: VectoQ): SparseVectorQ

    Take the minimum of 'this' vector with vector 'b' (element-by element).

    Take the minimum of 'this' vector with vector 'b' (element-by element).

    b

    the other vector

    Definition Classes
    SparseVectorQVectoQ
  131. def min(e: Int = dim): Rational

    Find the minimum element in 'this' vector.

    Find the minimum element in 'this' vector.

    e

    the ending index (exclusive) for the search

    Definition Classes
    SparseVectorQVectoQ
  132. def min[B >: Rational](implicit ord: Ordering[B]): Rational
    Definition Classes
    IterableOnceOps
  133. def minBy[B](f: (Rational) => B)(implicit cmp: Ordering[B]): Rational
    Definition Classes
    IterableOnceOps
  134. def minByOption[B](f: (Rational) => B)(implicit cmp: Ordering[B]): Option[Rational]
    Definition Classes
    IterableOnceOps
  135. def minOption[B >: Rational](implicit ord: Ordering[B]): Option[Rational]
    Definition Classes
    IterableOnceOps
  136. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  137. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  138. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  139. val nd: Double

    Number of elements in the vector as a Rational

    Number of elements in the vector as a Rational

    Definition Classes
    VectoQ
  140. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  141. def newSpecificBuilder: Builder[Rational, Iterable[Rational]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  142. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  143. def norm: Rational

    Compute the Euclidean norm (2-norm) of 'this' vector.

    Compute the Euclidean norm (2-norm) of 'this' vector.

    Definition Classes
    VectoQ
  144. def norm1: Rational

    Compute the Manhattan norm (1-norm) of 'this' vector.

    Compute the Manhattan norm (1-norm) of 'this' vector.

    Definition Classes
    SparseVectorQVectoQ
  145. def normSq: Rational

    Compute the Euclidean norm (2-norm) squared of 'this' vector.

    Compute the Euclidean norm (2-norm) squared of 'this' vector.

    Definition Classes
    VectoQ
  146. def normalize: SparseVectorQ

    Normalize 'this' vector so that it sums to one (like a probability vector).

    Normalize 'this' vector so that it sums to one (like a probability vector).

    Definition Classes
    SparseVectorQVectoQ
  147. def normalize1: SparseVectorQ

    Normalize 'this' vector to have a maximum of one.

    Normalize 'this' vector to have a maximum of one.

    Definition Classes
    SparseVectorQVectoQ
  148. def normalizeU: SparseVectorQ

    Normalize 'this' vector so its length is one (unit vector).

    Normalize 'this' vector so its length is one (unit vector).

    Definition Classes
    SparseVectorQVectoQ
  149. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  150. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  151. def one(size: Int = dim): SparseVectorQ

    Create a one vector (all elements are one) of length 'size'.

    Create a one vector (all elements are one) of length 'size'.

    size

    the number of elements in the vector

    Definition Classes
    SparseVectorQVectoQ
  152. def oneAt(j: Int, size: Int = dim): SparseVectorQ

    Create a vector of the form (0, ...

    Create a vector of the form (0, ... 1, ... 0) where the 1 is at position j.

    j

    the position to place the 1

    size

    the size of the vector (upper bound = size - 1)

    Definition Classes
    SparseVectorQVectoQ
  153. def partition(p: (Rational) => Boolean): (Iterable[Rational], Iterable[Rational])
    Definition Classes
    IterableOps
  154. def partitionMap[A1, A2](f: (Rational) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  155. def pot(b: VectoQ): Rational

    Compute the dot product (or inner product) of 'this' vector with vector 'b' zero-padded.

    Compute the dot product (or inner product) of 'this' vector with vector 'b' zero-padded.

    b

    the other vector

    Definition Classes
    VectoQ
  156. def product[B >: Rational](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  157. def pvariance: Rational

    Compute the population variance of the elements of 'this' vector.

    Compute the population variance of the elements of 'this' vector. This is also the (biased) MLE estimator for sample variance.

    Definition Classes
    VectoQ
  158. val range: Range

    Range for the storage array

    Range for the storage array

    Definition Classes
    VectoQ
  159. def rank: VectorI

    Establish the rank order of the elements in 'self' vector, e.g., (8.0, 2.0, 4.0, 6.0) is (3, 0, 1, 2).

    Establish the rank order of the elements in 'self' vector, e.g., (8.0, 2.0, 4.0, 6.0) is (3, 0, 1, 2).

    Definition Classes
    SparseVectorQVectoQ
  160. def recip: SparseVectorQ

    Return the vector containing the reciprocal of each element of 'this' vector.

    Return the vector containing the reciprocal of each element of 'this' vector.

    Definition Classes
    SparseVectorQVectoQ
  161. def reduce[B >: Rational](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  162. def reduceLeft[B >: Rational](op: (B, Rational) => B): B
    Definition Classes
    IterableOnceOps
  163. def reduceLeftOption[B >: Rational](op: (B, Rational) => B): Option[B]
    Definition Classes
    IterableOnceOps
  164. def reduceOption[B >: Rational](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  165. def reduceRight[B >: Rational](op: (Rational, B) => B): B
    Definition Classes
    IterableOnceOps
  166. def reduceRightOption[B >: Rational](op: (Rational, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  167. def reorder(rnk: VectoI): VectoQ

    Return the elements in 'this' vector in the given rank order 'rnk'.

    Return the elements in 'this' vector in the given rank order 'rnk'.

    rnk

    the given rank order

    Definition Classes
    VectoQ
  168. def reverse(): SparseVectorQ

    Reverse the order of the elements in 'this' vector.

    Reverse the order of the elements in 'this' vector.

    Definition Classes
    SparseVectorQVectoQ
  169. def reversed: Iterable[Rational]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  170. def rot(b: VectoQ)(from: Int = b.dim - 1): Rational

    Compute the dot product (or inner product) of 'this' vector with vector 'b' reversed.

    Compute the dot product (or inner product) of 'this' vector with vector 'b' reversed. zero-padded and reversed.

    b

    the other vector

    Definition Classes
    VectoQ
  171. def sameDimensions(b: SparseVectorQ): Boolean

    Check whether the other vector 'b' is at least as long as 'this' vector.

    Check whether the other vector 'b' is at least as long as 'this' vector.

    b

    the other vector

  172. def sameDimensions(b: VectoQ): Boolean

    Check whether the other vector 'b' is at least as long as 'this' vector.

    Check whether the other vector 'b' is at least as long as 'this' vector.

    b

    the other vector

    Definition Classes
    VectoQ
  173. def scan[B >: Rational](z: B)(op: (B, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  174. def scanLeft[B](z: B)(op: (B, Rational) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  175. def scanRight[B](z: B)(op: (Rational, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  176. def select(basis: Array[Int]): SparseVectorQ

    Select a subset of elements of 'this' vector corresponding to a 'basis'.

    Select a subset of elements of 'this' vector corresponding to a 'basis'.

    basis

    the set of index positions (e.g., 0, 2, 5)

    Definition Classes
    SparseVectorQVectoQ
  177. def select(basis: VectoI): VectoQ

    Select a subset of elements of 'this' vector corresponding to a 'basis'.

    Select a subset of elements of 'this' vector corresponding to a 'basis'.

    basis

    the set of index positions (e.g., 0, 2, 5)

    Definition Classes
    VectoQ
  178. def selectEx(basis: VectoI): VectoQ

    Select all elements of 'this' vector excluding ones in the 'basis'.

    Select all elements of 'this' vector excluding ones in the 'basis'.

    basis

    the index positions to be excluded

    Definition Classes
    VectoQ
  179. def selectEx(basis: Array[Int]): VectoQ

    Select all elements of 'this' vector excluding ones in the 'basis'.

    Select all elements of 'this' vector excluding ones in the 'basis'.

    basis

    the index positions to be excluded

    Definition Classes
    VectoQ
  180. def set(u: Seq[Rational]): Unit

    Set the values in 'this' vector to the values in array 'u'.

    Set the values in 'this' vector to the values in array 'u'.

    u

    the array of values to be assigned

    Definition Classes
    SparseVectorQVectoQ
  181. def set(x: Rational): Unit

    Set each value in 'this' vector to 'x'.

    Set each value in 'this' vector to 'x'.

    x

    the value to be assigned

    Definition Classes
    SparseVectorQVectoQ
  182. def setFormat(newFormat: String): Unit

    Set the format to the 'newFormat' (e.g., "%.6g,\t" or "%12.6g,\t").

    Set the format to the 'newFormat' (e.g., "%.6g,\t" or "%12.6g,\t").

    newFormat

    the new format String

    Definition Classes
    VectoQ
  183. def size: Int

    Return the size (number of elements) of 'this' vector.

    Return the size (number of elements) of 'this' vector.

    Definition Classes
    VectoQVec → IterableOnceOps
  184. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  185. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  186. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  187. def slice(from: Int, till: Int): SparseVectorQ

    Slice 'this' vector 'from' to 'end'.

    Slice 'this' vector 'from' to 'end'.

    from

    the start of the slice (included)

    till

    the end of the slice (excluded)

    Definition Classes
    SparseVectorQVectoQ → IterableOps → IterableOnceOps
  188. def slice(rg: Range): VectoQ

    Slice 'this' vector over the given range 'rg'.

    Slice 'this' vector over the given range 'rg'.

    rg

    the range specifying the slice

    Definition Classes
    VectoQ
  189. def sliceEx(rg: Range): VectoQ

    Slice 'this' vector excluding the given range 'rg'.

    Slice 'this' vector excluding the given range 'rg'.

    rg

    the excluded range of the slice

    Definition Classes
    VectoQ
  190. def sliding(size: Int, step: Int): Iterator[Iterable[Rational]]
    Definition Classes
    IterableOps
  191. def sliding(size: Int): Iterator[Iterable[Rational]]
    Definition Classes
    IterableOps
  192. def sort(): Unit

    Sort 'this' vector in-place in ascending (non-decreasing) order.

    Sort 'this' vector in-place in ascending (non-decreasing) order.

    Definition Classes
    SparseVectorQVectoQ
  193. def sort2(): Unit

    Sort 'this' vector in-place in descending (non-increasing) order.

    Sort 'this' vector in-place in descending (non-increasing) order.

    Definition Classes
    SparseVectorQVectoQ
  194. def span(p: (Rational) => Boolean): (Iterable[Rational], Iterable[Rational])
    Definition Classes
    IterableOps → IterableOnceOps
  195. def split(basis: VectoI): (VectoQ, VectoQ)

    Split the elements of 'this' vector into two vectors, one including the 'basis' and the other excluding the 'basis'.

    Split the elements of 'this' vector into two vectors, one including the 'basis' and the other excluding the 'basis'.

    basis

    the index positions to be included/excluded

    Definition Classes
    VectoQ
  196. def split(basis: Array[Int]): (VectoQ, VectoQ)

    Split the elements of 'this' vector into two vectors, one including the 'basis' and the other excluding the 'basis'.

    Split the elements of 'this' vector into two vectors, one including the 'basis' and the other excluding the 'basis'.

    basis

    the index positions to be included/excluded

    Definition Classes
    VectoQ
  197. def split(k: Int): Array[VectoQ]

    Split 'this' vector into 'k' arrays of equal sizes (perhaps except for the last one).

    Split 'this' vector into 'k' arrays of equal sizes (perhaps except for the last one).

    k

    the number of pieces the vector is to be split into

    Definition Classes
    VectoQ
  198. def splitAt(n: Int): (Iterable[Rational], Iterable[Rational])
    Definition Classes
    IterableOps → IterableOnceOps
  199. def sq: VectoQ

    Return the vector containing the square of each element of 'this' vector.

    Return the vector containing the square of each element of 'this' vector.

    Definition Classes
    VectoQ
  200. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Rational, S]): S
    Definition Classes
    IterableOnce
  201. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
    Annotations
    @deprecatedOverriding()
  202. def sum: Rational

    Sum the elements of 'this' vector.

    Sum the elements of 'this' vector.

    Definition Classes
    SparseVectorQVectoQ
  203. def sum[B >: Rational](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  204. def sumNE(i: Int): Rational

    Sum the elements of 'this' vector skipping the 'i'-th element (Not Equal 'i').

    Sum the elements of 'this' vector skipping the 'i'-th element (Not Equal 'i').

    i

    the index of the element to skip

    Definition Classes
    SparseVectorQVectoQ
  205. def sumPos: Rational

    Sum the positive (> 0) elements of 'this' vector.

    Sum the positive (> 0) elements of 'this' vector.

    Definition Classes
    SparseVectorQVectoQ
  206. def swap(i: Int, j: Int): Unit

    Swap elements 'i' and 'j' in 'this' vector.

    Swap elements 'i' and 'j' in 'this' vector.

    i

    the first element in the swap

    j

    the second element in the swap

    Definition Classes
    SparseVectorQVectoQ
  207. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  208. def tail: Iterable[Rational]
    Definition Classes
    IterableOps
  209. def tails: Iterator[Iterable[Rational]]
    Definition Classes
    IterableOps
  210. def take(n: Int): Iterable[Rational]
    Definition Classes
    IterableOps → IterableOnceOps
  211. def takeRight(n: Int): Iterable[Rational]
    Definition Classes
    IterableOps
  212. def takeWhile(p: (Rational) => Boolean): Iterable[Rational]
    Definition Classes
    IterableOps → IterableOnceOps
  213. def tapEach[U](f: (Rational) => U): Iterable[Rational]
    Definition Classes
    IterableOps → IterableOnceOps
  214. def to[C1](factory: Factory[Rational, C1]): C1
    Definition Classes
    IterableOnceOps
  215. def toArray[B >: Rational](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  216. final def toBuffer[B >: Rational]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  217. def toDense: VectorQ

    Convert 'this' sparse vector to a dense vector.

    Convert 'this' sparse vector to a dense vector.

    Definition Classes
    SparseVectorQVectoQ
  218. def toDouble: VectorD

    Convert 'this' SparseVectorQ into a VectorD.

    Convert 'this' SparseVectorQ into a VectorD.

    Definition Classes
    SparseVectorQVectoQ
  219. def toIndexedSeq: IndexedSeq[Rational]
    Definition Classes
    IterableOnceOps
  220. def toInt: VectorI

    Convert 'this' SparseVectorQ into a VectorI.

    Convert 'this' SparseVectorQ into a VectorI.

    Definition Classes
    SparseVectorQVectoQ
  221. final def toIterable: SparseVectorQ.this.type
    Definition Classes
    Iterable → IterableOps
  222. def toList: List[Rational]
    Definition Classes
    IterableOnceOps
  223. def toLong: VectorL

    Convert 'this' SparseVectorQ into a VectorL.

    Convert 'this' SparseVectorQ into a VectorL.

    Definition Classes
    SparseVectorQVectoQ
  224. def toMap[K, V](implicit ev: <:<[Rational, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  225. def toSeq: Seq[Rational]
    Definition Classes
    IterableOnceOps
  226. def toSet[B >: Rational]: Set[B]
    Definition Classes
    IterableOnceOps
  227. def toString: String

    Convert 'this' vector to a String.

    Convert 'this' vector to a String.

    Definition Classes
    SparseVectorQVectoQ → Iterable → AnyRef → Any
  228. def toString2: String

    Convert 'this' vector to a String, showing the zero elements as well,

  229. def toVector: Vector[Rational]
    Definition Classes
    IterableOnceOps
  230. def transpose[B](implicit asIterable: (Rational) => Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  231. def tryCompareTo[B >: SparseVectorQ](b: B)(implicit view_1: (B) => PartiallyOrdered[B]): Option[Int]

    Compare 'this' vector with vector 'b'.

    Compare 'this' vector with vector 'b'.

    b

    the other vector

    Definition Classes
    SparseVectorQ → PartiallyOrdered
  232. def unary_-: SparseVectorQ

    Return the negative of 'this' vector (unary minus).

    Return the negative of 'this' vector (unary minus).

    Definition Classes
    SparseVectorQVectoQ
  233. def unzip[A1, A2](implicit asPair: (Rational) => (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  234. def unzip3[A1, A2, A3](implicit asTriple: (Rational) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    IterableOps
  235. def update(r: Range, u: VectoQ): Unit

    Set 'this' vector's elements over the given range (vector slicing).

    Set 'this' vector's elements over the given range (vector slicing).

    r

    the given range

    u

    the vector to assign

    Definition Classes
    SparseVectorQVectoQ
  236. def update(r: Range, x: Rational): Unit

    Set 'this' vector's elements over the given range (vector slicing).

    Set 'this' vector's elements over the given range (vector slicing).

    r

    the given range

    x

    the value to assign

    Definition Classes
    SparseVectorQVectoQ
  237. def update(i: Int, x: Rational): Unit

    Set 'this' vector's element at the 'i'-th index position.

    Set 'this' vector's element at the 'i'-th index position.

    i

    the given index

    x

    the value to assign

    Definition Classes
    SparseVectorQVectoQ
  238. var v: RowMap
    Attributes
    protected
  239. def variance: Rational

    Compute the (unbiased) sample variance of the elements of 'this' vector.

    Compute the (unbiased) sample variance of the elements of 'this' vector.

    Definition Classes
    VectoQ
  240. def view: View[Rational]
    Definition Classes
    IterableOps
  241. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  242. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  243. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  244. def withFilter(p: (Rational) => Boolean): WithFilter[Rational, Iterable]
    Definition Classes
    IterableOps
  245. def zero(size: Int = dim): SparseVectorQ

    Create a zero vector (all elements are zero) of length 'size'.

    Create a zero vector (all elements are zero) of length 'size'.

    size

    the number of elements in the vector

    Definition Classes
    SparseVectorQVectoQ
  246. def zip[B](that: IterableOnce[B]): Iterable[(Rational, B)]
    Definition Classes
    IterableOps
  247. def zipAll[A1 >: Rational, B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
    Definition Classes
    IterableOps
  248. def zipWithIndex: Iterable[(Rational, Int)]
    Definition Classes
    IterableOps → IterableOnceOps
  249. def ~^(s: Rational): SparseVectorQ

    Return the vector containing each element of 'this' vector raised to the s-th power.

    Return the vector containing each element of 'this' vector raised to the s-th power.

    s

    the scalar exponent

    Definition Classes
    SparseVectorQVectoQ
  250. def ~^=(s: Rational): SparseVectorQ

    Raise each element of 'this' vector to the 's'-th power.

    Raise each element of 'this' vector to the 's'-th power.

    s

    the scalar exponent

    Definition Classes
    SparseVectorQVectoQ
  251. def (b: VectoQ): Rational

    Compute the dot product (or inner product) of 'this' vector with vector 'b'.

    Compute the dot product (or inner product) of 'this' vector with vector 'b'. When b.dim > dim, the remaining elements in b are skipped. When b.dim < dim, an index out of bound exception is thrown.

    b

    the other vector

    Definition Classes
    VectoQ
  252. def (b: VectoQ): Boolean

    Compare 'this' vector with that vector 'b' for inequality.

    Compare 'this' vector with that vector 'b' for inequality.

    b

    that vector

    Definition Classes
    VectoQ
  253. def (b: VectoQ): Boolean

    Compare 'this' vector with that vector 'b' for less than or equal to.

    Compare 'this' vector with that vector 'b' for less than or equal to.

    b

    that vector

    Definition Classes
    VectoQ
  254. def (b: VectoQ): Boolean

    Compare 'this' vector with that vector 'b' for greater than or equal to.

    Compare 'this' vector with that vector 'b' for greater than or equal to.

    b

    that vector

    Definition Classes
    VectoQ
  255. def (b: SparseVectorQ): Rational

    Compute the dot product (or inner product) of 'this' vector with vector 'b'.

    Compute the dot product (or inner product) of 'this' vector with vector 'b'.

    b

    the other vector

  256. def (b: VectoQ): Rational

    Compute the dot product (or inner product) of 'this' vector with vector 'b'.

    Compute the dot product (or inner product) of 'this' vector with vector 'b'.

    b

    the other vector

Deprecated Value Members

  1. def ++:[B >: Rational](that: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  2. final def /:[B](z: B)(op: (B, Rational) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  3. final def :\[B](z: B)(op: (Rational, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  4. def aggregate[B](z: => B)(seqop: (B, Rational) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  5. def companion: IterableFactory[Iterable]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  6. final def copyToBuffer[B >: Rational](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  7. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  8. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  9. final def repr: Iterable[Rational]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  10. def seq: SparseVectorQ.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  11. final def toIterator: Iterator[Rational]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  12. final def toStream: Stream[Rational]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  13. final def toTraversable: Traversable[Rational]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  14. def view(from: Int, until: Int): View[Rational]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

Inherited from VectoQ

Inherited from Serializable

Inherited from Error

Inherited from Vec

Inherited from PartiallyOrdered[VectoQ]

Inherited from Iterable[Rational]

Inherited from IterableFactoryDefaults[Rational, Iterable]

Inherited from IterableOps[Rational, Iterable, Iterable[Rational]]

Inherited from IterableOnceOps[Rational, Iterable, Iterable[Rational]]

Inherited from IterableOnce[Rational]

Inherited from AnyRef

Inherited from Any

Ungrouped