Packages

trait VectoQ extends Traversable[Rational] with PartiallyOrdered[VectoQ] with Vec with Error with Serializable

The VectoQ 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
Serializable, Serializable, Error, Vec, PartiallyOrdered[VectoQ], Traversable[Rational], GenTraversable[Rational], GenericTraversableTemplate[Rational, Traversable], TraversableLike[Rational, Traversable[Rational]], GenTraversableLike[Rational, Traversable[Rational]], Parallelizable[Rational, ParIterable[Rational]], TraversableOnce[Rational], GenTraversableOnce[Rational], FilterMonadic[Rational, Traversable[Rational]], HasNewBuilder[Rational, Traversable[Rational]], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. VectoQ
  2. Serializable
  3. Serializable
  4. Error
  5. Vec
  6. PartiallyOrdered
  7. Traversable
  8. GenTraversable
  9. GenericTraversableTemplate
  10. TraversableLike
  11. GenTraversableLike
  12. Parallelizable
  13. TraversableOnce
  14. GenTraversableOnce
  15. FilterMonadic
  16. HasNewBuilder
  17. AnyRef
  18. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Self = Traversable[Rational]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]
    Definition Classes
    TraversableLike

Abstract Value Members

  1. abstract def *(s: (Int, Rational)): VectoQ

    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 (position, scalar) to multiply

  2. abstract def *(s: Rational): VectoQ

    Multiply 'this' vector by scalar 's'.

    Multiply 'this' vector by scalar 's'.

    s

    the scalar to multiply by

  3. abstract def *(b: VectoQ): VectoQ

    Multiply 'this' vector by vector 'b'.

    Multiply 'this' vector by vector 'b'.

    b

    the vector to multiply by

  4. abstract def *=(s: Rational): VectoQ

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

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

    s

    the scalar to multiply by

  5. abstract def *=(b: VectoQ): VectoQ

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

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

    b

    the vector to multiply by

  6. abstract def +(s: (Int, Rational)): VectoQ

    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 (position, scalar) to add

  7. abstract def +(s: Rational): VectoQ

    Add 'this' vector and scalar 's'.

    Add 'this' vector and scalar 's'.

    s

    the scalar to add

  8. abstract def +(b: VectoQ): VectoQ

    Add 'this' vector and vector 'b'.

    Add 'this' vector and vector 'b'.

    b

    the vector to add

  9. abstract def ++(s: Rational): VectoQ

    Concatenate 'this' vector and scalar 's'.

    Concatenate 'this' vector and scalar 's'.

    s

    the scalar to be concatenated

  10. abstract def ++(b: VectoQ): VectoQ

    Concatenate 'this' vector and vector' b'.

    Concatenate 'this' vector and vector' b'.

    b

    the vector to be concatenated

  11. abstract def +=(s: Rational): VectoQ

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

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

    s

    the scalar to add

  12. abstract def +=(b: VectoQ): VectoQ

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

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

    b

    the vector to add

  13. abstract def -(s: (Int, Rational)): VectoQ

    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 (position, scalar) to subtract

  14. abstract def -(s: Rational): VectoQ

    From 'this' vector subtract scalar 's'.

    From 'this' vector subtract scalar 's'.

    s

    the scalar to subtract

  15. abstract def -(b: VectoQ): VectoQ

    From 'this' vector subtract vector 'b'.

    From 'this' vector subtract vector 'b'.

    b

    the vector to subtract

  16. abstract def -=(s: Rational): VectoQ

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

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

    s

    the scalar to substract

  17. abstract def -=(b: VectoQ): VectoQ

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

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

    b

    the vector to subtract

  18. abstract def /(s: (Int, Rational)): VectoQ

    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 (position, scalar) to divide

  19. abstract def /(s: Rational): VectoQ

    Divide 'this' vector by scalar 's'.

    Divide 'this' vector by scalar 's'.

    s

    the scalar to divide by

  20. abstract def /(b: VectoQ): VectoQ

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

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

    b

    the vector to divide by

  21. abstract def /=(s: Rational): VectoQ

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

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

    s

    the scalar to divide by

  22. abstract def /=(b: VectoQ): VectoQ

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

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

    b

    the vector to divide by

  23. abstract def _oneAt(j: Int, size: Int = dim): VectoQ

    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)

  24. abstract def abs: VectoQ

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

  25. abstract def apply(): IndexedSeq[Rational]

    Get 'this' vector's entire sequence/array.

  26. abstract def apply(r: Range): VectoQ

    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

  27. abstract 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

  28. abstract 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

  29. abstract 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

  30. abstract def argmaxPos(e: Int = dim): Int

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

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

    e

    the ending index (exclusive) for the search

  31. abstract 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

  32. abstract 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

  33. abstract def argminNeg(e: Int = dim): Int

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

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

    e

    the ending index (exclusive) for the search

  34. abstract 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

  35. abstract def copy: VectoQ

    Create a copy of this Vector.

  36. abstract def countNeg: Int

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

  37. abstract def countPos: Int

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

  38. abstract def countZero: Int

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

  39. abstract def countinct: Int

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

  40. abstract def cumulate: VectoQ

    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)

  41. abstract val dim: Int

    Vector dimension

  42. abstract def distinct: VectoQ

    Create a vector consisting of the distinct elements in 'this' vector.

  43. abstract 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'. 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

  44. abstract def expand(more: Int = dim): VectoQ

    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

  45. abstract def filterMissing: VectoQ

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

  46. abstract def filterPos(p: (Rational) ⇒ Boolean): IndexedSeq[Int]

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

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

    p

    the unary predicate (Boolean function) to apply

  47. abstract 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

  48. abstract 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

  49. abstract 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

  50. abstract 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
    VectoQ → GenericTraversableTemplate → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  51. abstract 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

  52. abstract 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

  53. abstract def isNonnegative: Boolean

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

  54. abstract def isSorted: Boolean

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

  55. abstract def map(f: (Rational) ⇒ Rational): VectoQ

    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

  56. abstract def max(b: VectoQ): VectoQ

    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

  57. abstract 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

  58. abstract def min(b: VectoQ): VectoQ

    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

  59. abstract 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

  60. abstract def norm1: Rational

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

  61. abstract def normalize: VectoQ

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

  62. abstract def normalize1: VectoQ

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

  63. abstract def normalizeU: VectoQ

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

  64. abstract def one(size: Int): VectoQ

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

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

    size

    the size of the new vector

  65. abstract def oneAt(j: Int, size: Int = dim): VectoQ

    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)

  66. abstract def rank: VectoI

    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).

  67. abstract def recip: VectoQ

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

  68. abstract def reverse(): VectoQ

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

  69. abstract def select(basis: Array[Int]): 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)

  70. abstract def set(u: Seq[Rational]): Unit

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

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

    u

    the sequence of values to be assigned

  71. abstract 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

  72. abstract def sort(): Unit

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

  73. abstract def sort2(): Unit

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

  74. abstract def sum: Rational

    Sum the elements of 'this' vector.

  75. abstract 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

  76. abstract def sumPos: Rational

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

  77. abstract 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

  78. abstract def toDense: VectorQ

    Convert 'this' VectoQ into a dense version.

  79. abstract def toDouble: VectoD

    Convert 'this' VectoQ into a VectoD.

  80. abstract def toInt: VectoI

    Convert 'this' VectoQ into a VectoI.

  81. abstract def toLong: VectoL

    Convert 'this' VectoQ into a VectoL.

  82. abstract def tryCompareTo[B >: VectoQ](that: B)(implicit arg0: (B) ⇒ PartiallyOrdered[B]): Option[Int]
    Definition Classes
    PartiallyOrdered
  83. abstract def unary_-(): VectoQ

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

  84. abstract 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

  85. abstract 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

  86. abstract 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

  87. abstract def zero(size: Int): VectoQ

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

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

    size

    the size of the new vector

  88. abstract def ~^(s: Rational): VectoQ

    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

  89. abstract def ~^=(s: Rational): VectoQ

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

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

    s

    the scalar exponent

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def ++[B >: Rational, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[Rational], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  4. def ++:[B >: Rational, That](that: Traversable[B])(implicit bf: CanBuildFrom[Traversable[Rational], B, That]): That
    Definition Classes
    TraversableLike
  5. def ++:[B >: Rational, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[Rational], B, That]): That
    Definition Classes
    TraversableLike
  6. def <[B >: VectoQ](that: B)(implicit arg0: (B) ⇒ PartiallyOrdered[B]): Boolean
    Definition Classes
    PartiallyOrdered
  7. def <=[B >: VectoQ](that: B)(implicit arg0: (B) ⇒ PartiallyOrdered[B]): Boolean
    Definition Classes
    PartiallyOrdered
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def >[B >: VectoQ](that: B)(implicit arg0: (B) ⇒ PartiallyOrdered[B]): Boolean
    Definition Classes
    PartiallyOrdered
  10. def >=[B >: VectoQ](that: B)(implicit arg0: (B) ⇒ PartiallyOrdered[B]): Boolean
    Definition Classes
    PartiallyOrdered
  11. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  12. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  13. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  14. def aggregate[B](z: ⇒ B)(seqop: (B, Rational) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  15. 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

  16. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  17. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  18. def collect[B, That](pf: PartialFunction[Rational, B])(implicit bf: CanBuildFrom[Traversable[Rational], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  19. def collectFirst[B](pf: PartialFunction[Rational, B]): Option[B]
    Definition Classes
    TraversableOnce
  20. def companion: GenericCompanion[Traversable]
    Definition Classes
    Traversable → GenTraversable → GenericTraversableTemplate
  21. def copyToArray[B >: Rational](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  22. def copyToArray[B >: Rational](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  23. def copyToArray[B >: Rational](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  24. def copyToBuffer[B >: Rational](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  25. def count(p: (Rational) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  26. def drop(n: Int): Traversable[Rational]
    Definition Classes
    TraversableLike → GenTraversableLike
  27. def dropWhile(p: (Rational) ⇒ Boolean): Traversable[Rational]
    Definition Classes
    TraversableLike → GenTraversableLike
  28. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  30. def exists(p: (Rational) ⇒ Boolean): Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  31. 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
  32. def filter(p: (Rational) ⇒ Boolean): VectoQ

    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
    VectoQ → TraversableLike → GenTraversableLike
  33. def filterNot(p: (Rational) ⇒ Boolean): Traversable[Rational]
    Definition Classes
    TraversableLike → GenTraversableLike
  34. def find(p: (Rational) ⇒ Boolean): Option[Rational]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  35. def flatMap[B, That](f: (Rational) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[Rational], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  36. def flatten[B](implicit asTraversable: (Rational) ⇒ GenTraversableOnce[B]): Traversable[B]
    Definition Classes
    GenericTraversableTemplate
  37. 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
  38. def fold[A1 >: Rational](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  39. def foldLeft[B](z: B)(op: (B, Rational) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  40. def foldRight[B](z: B)(op: (Rational, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  41. def forall(p: (Rational) ⇒ Boolean): Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  42. def genericBuilder[B]: Builder[B, Traversable[B]]
    Definition Classes
    GenericTraversableTemplate
  43. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  44. def groupBy[K](f: (Rational) ⇒ K): Map[K, Traversable[Rational]]
    Definition Classes
    TraversableLike → GenTraversableLike
  45. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  46. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  47. def head: Rational
    Definition Classes
    TraversableLike → GenTraversableLike
  48. def headOption: Option[Rational]
    Definition Classes
    TraversableLike → GenTraversableLike
  49. 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
  50. def init: Traversable[Rational]
    Definition Classes
    TraversableLike → GenTraversableLike
  51. def inits: Iterator[Traversable[Rational]]
    Definition Classes
    TraversableLike
  52. def isEmpty: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  53. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  54. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  55. def last: Rational
    Definition Classes
    TraversableLike → GenTraversableLike
  56. def lastOption: Option[Rational]
    Definition Classes
    TraversableLike → GenTraversableLike
  57. def mag: Rational

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

  58. def map[B, That](f: (Rational) ⇒ B)(implicit bf: CanBuildFrom[Traversable[Rational], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  59. def max[B >: Rational](implicit cmp: Ordering[B]): Rational
    Definition Classes
    TraversableOnce → GenTraversableOnce
  60. def maxBy[B](f: (Rational) ⇒ B)(implicit cmp: Ordering[B]): Rational
    Definition Classes
    TraversableOnce → GenTraversableOnce
  61. def mean: Rational

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

  62. def min[B >: Rational](implicit cmp: Ordering[B]): Rational
    Definition Classes
    TraversableOnce → GenTraversableOnce
  63. def minBy[B](f: (Rational) ⇒ B)(implicit cmp: Ordering[B]): Rational
    Definition Classes
    TraversableOnce → GenTraversableOnce
  64. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  65. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  66. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  67. val nd: Double

    Number of elements in the vector as a Rational

  68. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  69. def newBuilder: Builder[Rational, Traversable[Rational]]
    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  70. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  71. def norm: Rational

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

  72. def normSq: Rational

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

  73. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  74. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  75. def par: ParIterable[Rational]
    Definition Classes
    Parallelizable
  76. def parCombiner: Combiner[Rational, ParIterable[Rational]]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  77. def partition(p: (Rational) ⇒ Boolean): (Traversable[Rational], Traversable[Rational])
    Definition Classes
    TraversableLike → GenTraversableLike
  78. 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

  79. def product[B >: Rational](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. 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.

  81. val range: Range

    Range for the storage array

  82. def reduce[A1 >: Rational](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  83. def reduceLeft[B >: Rational](op: (B, Rational) ⇒ B): B
    Definition Classes
    TraversableOnce
  84. def reduceLeftOption[B >: Rational](op: (B, Rational) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  85. def reduceOption[A1 >: Rational](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  86. def reduceRight[B >: Rational](op: (Rational, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  87. def reduceRightOption[B >: Rational](op: (Rational, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  88. 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

  89. def repr: Traversable[Rational]
    Definition Classes
    TraversableLike → GenTraversableLike
  90. def reversed: List[Rational]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  91. def rot(b: VectoQ): 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

  92. 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

  93. def scan[B >: Rational, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Traversable[Rational], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  94. def scanLeft[B, That](z: B)(op: (B, Rational) ⇒ B)(implicit bf: CanBuildFrom[Traversable[Rational], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  95. def scanRight[B, That](z: B)(op: (Rational, B) ⇒ B)(implicit bf: CanBuildFrom[Traversable[Rational], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  96. 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)

  97. 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

  98. 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

  99. def seq: Traversable[Rational]
    Definition Classes
    Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  100. 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

  101. def size: Int

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

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

    Definition Classes
    VectoQVec → GenTraversableLike → TraversableOnce → GenTraversableOnce
  102. def sizeHintIfCheap: Int
    Attributes
    protected[collection]
    Definition Classes
    GenTraversableOnce
  103. 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

  104. def slice(from: Int, till: Int = dim): VectoQ

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

    Slice 'this' vector 'from' to 'end'. Override in implementing classes.

    from

    the start of the slice (included)

    till

    the end of the slice (excluded)

    Definition Classes
    VectoQ → TraversableLike → GenTraversableLike
  105. 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

  106. def span(p: (Rational) ⇒ Boolean): (Traversable[Rational], Traversable[Rational])
    Definition Classes
    TraversableLike → GenTraversableLike
  107. 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

  108. 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

  109. 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

  110. def splitAt(n: Int): (Traversable[Rational], Traversable[Rational])
    Definition Classes
    TraversableLike → GenTraversableLike
  111. def sq: VectoQ

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

  112. def stringPrefix: String
    Definition Classes
    TraversableLike → GenTraversableLike
  113. def sum[B >: Rational](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  114. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  115. def tail: Traversable[Rational]
    Definition Classes
    TraversableLike → GenTraversableLike
  116. def tails: Iterator[Traversable[Rational]]
    Definition Classes
    TraversableLike
  117. def take(n: Int): Traversable[Rational]
    Definition Classes
    TraversableLike → GenTraversableLike
  118. def takeWhile(p: (Rational) ⇒ Boolean): Traversable[Rational]
    Definition Classes
    TraversableLike → GenTraversableLike
  119. def thisCollection: Traversable[Rational]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  120. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Rational, Col[Rational]]): Col[Rational]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  121. def toArray[B >: Rational](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  122. def toBuffer[B >: Rational]: Buffer[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  123. def toCollection(repr: Traversable[Rational]): Traversable[Rational]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  124. def toIndexedSeq: IndexedSeq[Rational]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def toIterable: Iterable[Rational]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def toIterator: Iterator[Rational]
    Definition Classes
    TraversableLike → GenTraversableOnce
  127. def toList: List[Rational]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. def toMap[T, U](implicit ev: <:<[Rational, (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def toSeq: Seq[Rational]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def toSet[B >: Rational]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  131. def toStream: Stream[Rational]
    Definition Classes
    TraversableLike → GenTraversableOnce
  132. def toString(): String
    Definition Classes
    TraversableLike → Any
  133. def toTraversable: Traversable[Rational]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  134. def toVector: Vector[Rational]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  135. def transpose[B](implicit asTraversable: (Rational) ⇒ GenTraversableOnce[B]): Traversable[Traversable[B]]
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  136. def unzip[A1, A2](implicit asPair: (Rational) ⇒ (A1, A2)): (Traversable[A1], Traversable[A2])
    Definition Classes
    GenericTraversableTemplate
  137. def unzip3[A1, A2, A3](implicit asTriple: (Rational) ⇒ (A1, A2, A3)): (Traversable[A1], Traversable[A2], Traversable[A3])
    Definition Classes
    GenericTraversableTemplate
  138. def variance: Rational

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

  139. def view(from: Int, until: Int): TraversableView[Rational, Traversable[Rational]]
    Definition Classes
    TraversableLike
  140. def view: TraversableView[Rational, Traversable[Rational]]
    Definition Classes
    TraversableLike
  141. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  142. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  143. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  144. def withFilter(p: (Rational) ⇒ Boolean): FilterMonadic[Rational, Traversable[Rational]]
    Definition Classes
    TraversableLike → FilterMonadic
  145. 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

  146. 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

  147. 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

  148. 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

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, Rational) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldLeft instead of /:

  2. def :\[B](z: B)(op: (Rational, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldRight instead of :\

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

Inherited from Serializable

Inherited from Serializable

Inherited from Error

Inherited from Vec

Inherited from PartiallyOrdered[VectoQ]

Inherited from Traversable[Rational]

Inherited from GenTraversable[Rational]

Inherited from GenericTraversableTemplate[Rational, Traversable]

Inherited from TraversableLike[Rational, Traversable[Rational]]

Inherited from GenTraversableLike[Rational, Traversable[Rational]]

Inherited from Parallelizable[Rational, ParIterable[Rational]]

Inherited from TraversableOnce[Rational]

Inherited from GenTraversableOnce[Rational]

Inherited from FilterMonadic[Rational, Traversable[Rational]]

Inherited from HasNewBuilder[Rational, Traversable[Rational]]

Inherited from AnyRef

Inherited from Any

Ungrouped