scalation.linalgebra

VectorR

class VectorR extends Traversable[Rational] with PartiallyOrdered[VectorR] with Error with Serializable

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

Linear Supertypes
Serializable, Serializable, Error, PartiallyOrdered[VectorR], 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
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. VectorR
  2. Serializable
  3. Serializable
  4. Error
  5. PartiallyOrdered
  6. Traversable
  7. GenTraversable
  8. GenericTraversableTemplate
  9. TraversableLike
  10. GenTraversableLike
  11. Parallelizable
  12. TraversableOnce
  13. GenTraversableOnce
  14. FilterMonadic
  15. HasNewBuilder
  16. AnyRef
  17. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new VectorR(u: VectorR)

    Construct a vector and assign values from vector u.

    Construct a vector and assign values from vector u.

    u

    the other vector

  2. new VectorR(u: Array[Rational])

    Construct a vector from an array of values.

    Construct a vector from an array of values.

    u

    the array of values

  3. new VectorR(dim: Int, v: Array[Rational] = null)

    dim

    the dimension/size of the vector

    v

    the 1D array used to store vector elements

Type Members

  1. type Self = Traversable[Rational]

    Attributes
    protected
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]

    Definition Classes
    TraversableLike

Value Members

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

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

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

    Definition Classes
    AnyRef → Any
  4. def *(m: Matrir): VectorR

    Multiply this 'row' vector by matrix m.

    Multiply this 'row' vector by matrix m. FIX: not yet implemented

    m

    the matrix to multiply by

  5. def *(s: Double): VectorR

    Multiply this vector by scalar s.

    Multiply this vector by scalar s.

    s

    the scalar to multiply by

  6. def *(s: Rational): VectorR

    Multiply this vector by scalar s.

    Multiply this vector by scalar s.

    s

    the scalar to multiply by

  7. def *(b: VectorR): VectorR

    Multiply this vector by vector b.

    Multiply this vector by vector b.

    b

    the vector to multiply by

  8. def *=(s: Double): VectorR

    Multiply in-place this vector and scalar s.

    Multiply in-place this vector and scalar s.

    s

    the scalar to add

  9. def *=(s: Rational): VectorR

    Multiply in-place this vector and scalar s.

    Multiply in-place this vector and scalar s.

    s

    the scalar to add

  10. def *=(b: VectorR): VectorR

    Multiply in-place this vector and vector b.

    Multiply in-place this vector and vector b.

    b

    the vector to add

  11. def +(s: (Rational, Int)): VectorR

    Add this vector and scalar s.

    Add this vector and scalar s._1 only at position s._2.

    s

    the (scalar, position) to add

  12. def +(s: Double): VectorR

    Add this vector and scalar s.

    Add this vector and scalar s.

    s

    the scalar to add

  13. def +(s: Rational): VectorR

    Add this vector and scalar s.

    Add this vector and scalar s.

    s

    the scalar to add

  14. def +(b: VectorR): VectorR

    Add this vector and vector b.

    Add this vector and vector b.

    b

    the vector to add

  15. def ++(b: Double): VectorR

    Concatenate this vector and scalar b.

    Concatenate this vector and scalar b.

    b

    the scalar to be concatenated

  16. def ++(b: Rational): VectorR

    Concatenate this vector and scalar b.

    Concatenate this vector and scalar b.

    b

    the scalar to be concatenated

  17. def ++(b: VectorR): VectorR

    Concatenate this vector and vector b.

    Concatenate this vector and vector b.

    b

    the vector to be concatenated

  18. def ++[B >: Rational, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[Rational], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  19. def ++:[B >: Rational, That](that: Traversable[B])(implicit bf: CanBuildFrom[Traversable[Rational], B, That]): That

    Definition Classes
    TraversableLike
  20. def ++:[B >: Rational, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[Rational], B, That]): That

    Definition Classes
    TraversableLike
  21. def +=(s: Double): VectorR

    Add in-place this vector and scalar s.

    Add in-place this vector and scalar s.

    s

    the scalar to add

  22. def +=(s: Rational): VectorR

    Add in-place this vector and scalar s.

    Add in-place this vector and scalar s.

    s

    the scalar to add

  23. def +=(b: VectorR): VectorR

    Add in-place this vector and vector b.

    Add in-place this vector and vector b.

    b

    the vector to add

  24. def -(s: (Rational, Int)): VectorR

    From this vector subtract scalar s.

    From this vector subtract scalar s._1 only at position s._2.

    s

    the (scalar, position) to subtract

  25. def -(s: Double): VectorR

    From this vector subtract scalar s.

    From this vector subtract scalar s.

    s

    the scalar to subtract

  26. def -(s: Rational): VectorR

    From this vector subtract scalar s.

    From this vector subtract scalar s.

    s

    the scalar to subtract

  27. def -(b: VectorR): VectorR

    From this vector subtract vector b.

    From this vector subtract vector b.

    b

    the vector to subtract

  28. def -=(s: Double): VectorR

    From this vector subtract in-place scalar s.

    From this vector subtract in-place scalar s.

    s

    the scalar to add

  29. def -=(s: Rational): VectorR

    From this vector subtract in-place scalar s.

    From this vector subtract in-place scalar s.

    s

    the scalar to add

  30. def -=(b: VectorR): VectorR

    From this vector subtract in-place vector b.

    From this vector subtract in-place vector b.

    b

    the vector to add

  31. def /(s: Double): VectorR

    Divide this vector by scalar s.

    Divide this vector by scalar s.

    s

    the scalar to divide by

  32. def /(s: Rational): VectorR

    Divide this vector by scalar s.

    Divide this vector by scalar s.

    s

    the scalar to divide by

  33. def /(b: VectorR): VectorR

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

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

    b

    the vector to divide by

  34. def /:[B](z: B)(op: (B, Rational) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  35. def /=(s: Double): VectorR

    Divide in-place this vector and scalar s.

    Divide in-place this vector and scalar s.

    s

    the scalar to add

  36. def /=(s: Rational): VectorR

    Divide in-place this vector and scalar s.

    Divide in-place this vector and scalar s.

    s

    the scalar to add

  37. def /=(b: VectorR): VectorR

    Divide in-place this vector and vector b.

    Divide in-place this vector and vector b.

    b

    the vector to add

  38. def :\[B](z: B)(op: (Rational, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  39. def <[B >: VectorR](that: B)(implicit arg0: (B) ⇒ PartiallyOrdered[B]): Boolean

    Definition Classes
    PartiallyOrdered
  40. def <=[B >: VectorR](that: B)(implicit arg0: (B) ⇒ PartiallyOrdered[B]): Boolean

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

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

    Definition Classes
    Any
  43. def >[B >: VectorR](that: B)(implicit arg0: (B) ⇒ PartiallyOrdered[B]): Boolean

    Definition Classes
    PartiallyOrdered
  44. def >=[B >: VectorR](that: B)(implicit arg0: (B) ⇒ PartiallyOrdered[B]): Boolean

    Definition Classes
    PartiallyOrdered
  45. def _oneAt(j: Int, size: Int = dim): VectorR

    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)

  46. def abs: VectorR

    Return the vector is absolute values.

  47. def addString(b: StringBuilder): StringBuilder

    Definition Classes
    TraversableOnce
  48. def addString(b: StringBuilder, sep: String): StringBuilder

    Definition Classes
    TraversableOnce
  49. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Definition Classes
    TraversableOnce
  50. def aggregate[B](z: B)(seqop: (B, Rational) ⇒ B, combop: (B, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  51. def apply(): Array[Rational]

    Get this vector's entire array.

  52. def apply(r: Range): VectorR

    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

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

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

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

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

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

  58. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  59. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  60. def collect[B, That](pf: PartialFunction[Rational, B])(implicit bf: CanBuildFrom[Traversable[Rational], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  61. def collectFirst[B](pf: PartialFunction[Rational, B]): Option[B]

    Definition Classes
    TraversableOnce
  62. def companion: GenericCompanion[Traversable]

    Definition Classes
    Traversable → GenTraversable → GenericTraversableTemplate
  63. 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

  64. def copyToArray[B >: Rational](xs: Array[B], start: Int, len: Int): Unit

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  65. def copyToArray[B >: Rational](xs: Array[B]): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  66. def copyToArray[B >: Rational](xs: Array[B], start: Int): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  67. def copyToBuffer[B >: Rational](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  68. def count(p: (Rational) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  69. def countNeg: Int

    Count the number of strictly negative entries in this vector.

  70. def countPos: Int

    Count the number of strictly positive entries in this vector.

  71. def cumulate: VectorR

    Cumulate the values of this vector from left to right (e.

    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)

  72. val dim: Int

    the dimension/size of the vector

  73. def dot(b: VectorR): 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

  74. def drop(n: Int): Traversable[Rational]

    Definition Classes
    TraversableLike → GenTraversableLike
  75. def dropWhile(p: (Rational) ⇒ Boolean): Traversable[Rational]

    Definition Classes
    TraversableLike → GenTraversableLike
  76. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  77. def equals(b: Any): Boolean

    Override equals to determine whether vector this equals vector b.

    Override equals to determine whether vector this equals vector b.

    b

    the vector to compare with this

    Definition Classes
    VectorR → AnyRef → Any
  78. def exists(p: (Rational) ⇒ Boolean): Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  79. def expand(more: Int = dim): VectorR

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

  80. def filter(p: (Rational) ⇒ Boolean): Traversable[Rational]

    Definition Classes
    TraversableLike → GenTraversableLike
  81. def filterNot(p: (Rational) ⇒ Boolean): Traversable[Rational]

    Definition Classes
    TraversableLike → GenTraversableLike
  82. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  83. def find(p: (Rational) ⇒ Boolean): Option[Rational]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  84. 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

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

  86. def flatMap[B, That](f: (Rational) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Traversable[Rational], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  87. def flatten[B](implicit asTraversable: (Rational) ⇒ GenTraversableOnce[B]): Traversable[B]

    Definition Classes
    GenericTraversableTemplate
  88. 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
  89. def fold[A1 >: Rational](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  90. def foldLeft[B](z: B)(op: (B, Rational) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def foldRight[B](z: B)(op: (Rational, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def forall(p: (Rational) ⇒ Boolean): Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  93. def foreach[U](f: (Rational) ⇒ U): Unit

    Iterate over the vector element by element.

    Iterate over the vector element by element.

    f

    the function to apply

    Definition Classes
    VectorR → GenericTraversableTemplate → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  94. def genericBuilder[B]: Builder[B, Traversable[B]]

    Definition Classes
    GenericTraversableTemplate
  95. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  96. def groupBy[K](f: (Rational) ⇒ K): Map[K, Traversable[Rational]]

    Definition Classes
    TraversableLike → GenTraversableLike
  97. def hasDefiniteSize: Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  98. def hashCode(): Int

    Must also override hashCode to be be compatible with equals.

    Must also override hashCode to be be compatible with equals.

    Definition Classes
    VectorR → AnyRef → Any
  99. def head: Rational

    Definition Classes
    TraversableLike → GenTraversableLike
  100. def headOption: Option[Rational]

    Definition Classes
    TraversableLike → GenTraversableLike
  101. def init: Traversable[Rational]

    Definition Classes
    TraversableLike → GenTraversableLike
  102. def inits: Iterator[Traversable[Rational]]

    Definition Classes
    TraversableLike
  103. def isEmpty: Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  104. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  105. def isNonnegative: Boolean

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

  106. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  107. def last: Rational

    Definition Classes
    TraversableLike → GenTraversableLike
  108. def lastOption: Option[Rational]

    Definition Classes
    TraversableLike → GenTraversableLike
  109. def mag: Rational

    Find the element with the greatest magnitude in this vector.

  110. def map[B, That](f: (Rational) ⇒ B)(implicit bf: CanBuildFrom[Traversable[Rational], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  111. def max(b: VectorR): VectorR

    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

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

  113. def max[B >: Rational](implicit cmp: Ordering[B]): Rational

    Definition Classes
    TraversableOnce → GenTraversableOnce
  114. def maxBy[B](f: (Rational) ⇒ B)(implicit cmp: Ordering[B]): Rational

    Definition Classes
    TraversableOnce → GenTraversableOnce
  115. def min(b: VectorR): VectorR

    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

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

  117. def min[B >: Rational](implicit cmp: Ordering[B]): Rational

    Definition Classes
    TraversableOnce → GenTraversableOnce
  118. def minBy[B](f: (Rational) ⇒ B)(implicit cmp: Ordering[B]): Rational

    Definition Classes
    TraversableOnce → GenTraversableOnce
  119. def mkString: String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  120. def mkString(sep: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. def mkString(start: String, sep: String, end: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  122. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  123. def newBuilder: Builder[Rational, Traversable[Rational]]

    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  124. def nonEmpty: Boolean

    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def norm: Rational

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

  126. def norm1: Rational

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

  127. def normSq: Rational

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

  128. def normalize: VectorR

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

  129. def normalize1: VectorR

    Normalize this vector to have a maximum of one.

  130. def normalizeU: VectorR

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

  131. final def notify(): Unit

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

    Definition Classes
    AnyRef
  133. def oneAt(j: Int, size: Int = dim): VectorR

    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)

  134. def par: ParIterable[Rational]

    Definition Classes
    Parallelizable
  135. def parCombiner: Combiner[Rational, ParIterable[Rational]]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  136. def partition(p: (Rational) ⇒ Boolean): (Traversable[Rational], Traversable[Rational])

    Definition Classes
    TraversableLike → GenTraversableLike
  137. def product[B >: Rational](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  138. def reduce[A1 >: Rational](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  139. def reduceLeft[B >: Rational](op: (B, Rational) ⇒ B): B

    Definition Classes
    TraversableOnce
  140. def reduceLeftOption[B >: Rational](op: (B, Rational) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  141. def reduceOption[A1 >: Rational](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  142. def reduceRight[B >: Rational](op: (Rational, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  143. def reduceRightOption[B >: Rational](op: (Rational, B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  144. def repr: Traversable[Rational]

    Definition Classes
    TraversableLike → GenTraversableLike
  145. def reversed: List[Rational]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  146. def sameDimensions(b: VectorR): Boolean

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

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

    b

    the other vector

  147. def scan[B >: Rational, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Traversable[Rational], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  148. def scanLeft[B, That](z: B)(op: (B, Rational) ⇒ B)(implicit bf: CanBuildFrom[Traversable[Rational], B, That]): That

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

  150. def select(index: Array[Int]): VectorR

    Select a subset of elements of this vector corresponding to a index/basis.

    Select a subset of elements of this vector corresponding to a index/basis.

    index

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

  151. def seq: Traversable[Rational]

    Definition Classes
    Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  152. 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

  153. def setAll(u: Array[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

  154. def size: Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  155. def slice(from: Int, till: Int): VectorR

    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
    VectorR → TraversableLike → GenTraversableLike
  156. def sort(): Unit

    Sort this vector in-place in non-decreasing order.

  157. def span(p: (Rational) ⇒ Boolean): (Traversable[Rational], Traversable[Rational])

    Definition Classes
    TraversableLike → GenTraversableLike
  158. def splitAt(n: Int): (Traversable[Rational], Traversable[Rational])

    Definition Classes
    TraversableLike → GenTraversableLike
  159. def sq: VectorR

    Square each element of this vector.

  160. def stringPrefix: String

    Definition Classes
    TraversableLike → GenTraversableLike
  161. def sum: Rational

    Sum the elements of this vector.

  162. def sum[B >: Rational](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  163. def sum_ne(i: Int): Rational

    Sum the elements of this vector skipping the i-th element.

    Sum the elements of this vector skipping the i-th element.

    i

    the index of the element to skip

  164. def sum_pos: Rational

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

  165. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  166. def tail: Traversable[Rational]

    Definition Classes
    TraversableLike → GenTraversableLike
  167. def tails: Iterator[Traversable[Rational]]

    Definition Classes
    TraversableLike
  168. def take(n: Int): Traversable[Rational]

    Definition Classes
    TraversableLike → GenTraversableLike
  169. def takeWhile(p: (Rational) ⇒ Boolean): Traversable[Rational]

    Definition Classes
    TraversableLike → GenTraversableLike
  170. def thisCollection: Traversable[Rational]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  171. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Rational, Col[Rational]]): Col[Rational]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  172. def toArray[B >: Rational](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  173. def toBuffer[B >: Rational]: Buffer[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  174. def toCollection(repr: Traversable[Rational]): Traversable[Rational]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  175. def toIndexedSeq: IndexedSeq[Rational]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  176. def toIterable: Iterable[Rational]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  177. def toIterator: Iterator[Rational]

    Definition Classes
    TraversableLike → GenTraversableOnce
  178. def toList: List[Rational]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  179. def toMap[T, U](implicit ev: <:<[Rational, (T, U)]): Map[T, U]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  180. def toSeq: Seq[Rational]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  181. def toSet[B >: Rational]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  182. def toStream: Stream[Rational]

    Definition Classes
    TraversableLike → GenTraversableOnce
  183. def toString(): String

    Convert this rational vector to a String.

    Convert this rational vector to a String.

    Definition Classes
    VectorR → TraversableLike → AnyRef → Any
  184. def toTraversable: Traversable[Rational]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  185. def toVector: Vector[Rational]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  186. 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.

  187. def tryCompareTo[B >: VectorR](b: B)(implicit arg0: (B) ⇒ PartiallyOrdered[B]): Option[Int]

    Compare this vector with vector b.

    Compare this vector with vector b.

    b

    the other vector

    Definition Classes
    VectorR → PartiallyOrdered
  188. def unary_-(): VectorR

    Return the negative of this vector (unary minus).

  189. def unzip[A1, A2](implicit asPair: (Rational) ⇒ (A1, A2)): (Traversable[A1], Traversable[A2])

    Definition Classes
    GenericTraversableTemplate
  190. def unzip3[A1, A2, A3](implicit asTriple: (Rational) ⇒ (A1, A2, A3)): (Traversable[A1], Traversable[A2], Traversable[A3])

    Definition Classes
    GenericTraversableTemplate
  191. def update(r: Range, u: VectorR): 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

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

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

  194. var v: Array[Rational]

    the 1D array used to store vector elements

    the 1D array used to store vector elements

    Attributes
    protected
  195. def view(from: Int, until: Int): TraversableView[Rational, Traversable[Rational]]

    Definition Classes
    TraversableLike
  196. def view: TraversableView[Rational, Traversable[Rational]]

    Definition Classes
    TraversableLike
  197. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  200. def withFilter(p: (Rational) ⇒ Boolean): FilterMonadic[Rational, Traversable[Rational]]

    Definition Classes
    TraversableLike → FilterMonadic
  201. def ~^(s: Rational): VectorR

    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

  202. def ~^(s: Long): VectorR

    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

  203. def ~^=(s: Rational): Unit

    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

  204. def ~^=(s: Long): Unit

    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

Deprecated Value Members

  1. def /:\[A1 >: Rational](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use fold instead

Inherited from Serializable

Inherited from Serializable

Inherited from Error

Inherited from PartiallyOrdered[VectorR]

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