scalation.linalgebra

VectorC

Related Docs: object VectorC | package linalgebra

class VectorC extends Traversable[Complex] with PartiallyOrdered[VectorC] with Error with Serializable

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

Linear Supertypes
Serializable, Serializable, Error, PartiallyOrdered[VectorC], Traversable[Complex], GenTraversable[Complex], GenericTraversableTemplate[Complex, Traversable], TraversableLike[Complex, Traversable[Complex]], GenTraversableLike[Complex, Traversable[Complex]], Parallelizable[Complex, ParIterable[Complex]], TraversableOnce[Complex], GenTraversableOnce[Complex], FilterMonadic[Complex, Traversable[Complex]], HasNewBuilder[Complex, Traversable[Complex]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. VectorC
  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 VectorC(u: VectorC)

    Construct a vector and assign values from vector u.

    Construct a vector and assign values from vector u.

    u

    the other vector

  2. new VectorC(u: Array[Complex])

    Construct a vector from an array of values.

    Construct a vector from an array of values.

    u

    the array of values

  3. new VectorC(dim: Int, v: Array[Complex] = null)

    dim

    the dimension/size of the vector

    v

    the 1D array used to store vector elements

Type Members

  1. type Self = Traversable[Complex]

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

    Definition Classes
    TraversableLike

Value Members

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

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. def *(m: Matric): VectorC

    Multiply this 'row' vector by matrix m.

    Multiply this 'row' vector by matrix m.

    m

    the matrix to multiply by

  4. def *(s: Double): VectorC

    Multiply this vector by scalar s.

    Multiply this vector by scalar s.

    s

    the scalar to multiply by

  5. def *(s: Complex): VectorC

    Multiply this vector by scalar s.

    Multiply this vector by scalar s.

    s

    the scalar to multiply by

  6. def *(b: VectorC): VectorC

    Multiply this vector by vector b.

    Multiply this vector by vector b.

    b

    the vector to multiply by

  7. def *=(s: Double): VectorC

    Multiply in-place this vector and scalar s.

    Multiply in-place this vector and scalar s.

    s

    the scalar to add

  8. def *=(s: Complex): VectorC

    Multiply in-place this vector and scalar s.

    Multiply in-place this vector and scalar s.

    s

    the scalar to add

  9. def *=(b: VectorC): VectorC

    Multiply in-place this vector and vector b.

    Multiply in-place this vector and vector b.

    b

    the vector to add

  10. def +(s: (Complex, Int)): VectorC

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

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

    s

    the (scalar, position) to add

  11. def +(s: Double): VectorC

    Add this vector and scalar s.

    Add this vector and scalar s.

    s

    the scalar to add

  12. def +(s: Complex): VectorC

    Add this vector and scalar s.

    Add this vector and scalar s.

    s

    the scalar to add

  13. def +(b: VectorC): VectorC

    Add this vector and vector b.

    Add this vector and vector b.

    b

    the vector to add

  14. def ++(b: Double): VectorC

    Concatenate this vector and scalar b.

    Concatenate this vector and scalar b.

    b

    the scalar to be concatenated

  15. def ++(b: Complex): VectorC

    Concatenate this vector and scalar b.

    Concatenate this vector and scalar b.

    b

    the scalar to be concatenated

  16. def ++(b: VectorC): VectorC

    Concatenate this vector and vector b.

    Concatenate this vector and vector b.

    b

    the vector to be concatenated

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

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

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

    Definition Classes
    TraversableLike
  20. def +=(s: Double): VectorC

    Add in-place this vector and scalar s.

    Add in-place this vector and scalar s.

    s

    the scalar to add

  21. def +=(s: Complex): VectorC

    Add in-place this vector and scalar s.

    Add in-place this vector and scalar s.

    s

    the scalar to add

  22. def +=(b: VectorC): VectorC

    Add in-place this vector and vector b.

    Add in-place this vector and vector b.

    b

    the vector to add

  23. def -(s: (Complex, Int)): VectorC

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

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

    s

    the (scalar, position) to subtract

  24. def -(s: Double): VectorC

    From this vector subtract scalar s.

    From this vector subtract scalar s.

    s

    the scalar to subtract

  25. def -(s: Complex): VectorC

    From this vector subtract scalar s.

    From this vector subtract scalar s.

    s

    the scalar to subtract

  26. def -(b: VectorC): VectorC

    From this vector subtract vector b.

    From this vector subtract vector b.

    b

    the vector to subtract

  27. def -=(s: Double): VectorC

    From this vector subtract in-place scalar s.

    From this vector subtract in-place scalar s.

    s

    the scalar to add

  28. def -=(s: Complex): VectorC

    From this vector subtract in-place scalar s.

    From this vector subtract in-place scalar s.

    s

    the scalar to add

  29. def -=(b: VectorC): VectorC

    From this vector subtract in-place vector b.

    From this vector subtract in-place vector b.

    b

    the vector to add

  30. def /(s: Double): VectorC

    Divide this vector by scalar s.

    Divide this vector by scalar s.

    s

    the scalar to divide by

  31. def /(s: Complex): VectorC

    Divide this vector by scalar s.

    Divide this vector by scalar s.

    s

    the scalar to divide by

  32. def /(b: VectorC): VectorC

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

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

    b

    the vector to divide by

  33. def /:[B](z: B)(op: (B, Complex) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  34. def /=(s: Double): VectorC

    Divide in-place this vector and scalar s.

    Divide in-place this vector and scalar s.

    s

    the scalar to add

  35. def /=(s: Complex): VectorC

    Divide in-place this vector and scalar s.

    Divide in-place this vector and scalar s.

    s

    the scalar to add

  36. def /=(b: VectorC): VectorC

    Divide in-place this vector and vector b.

    Divide in-place this vector and vector b.

    b

    the vector to add

  37. def :\[B](z: B)(op: (Complex, B) ⇒ B): B

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

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

    Definition Classes
    PartiallyOrdered
  40. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  41. def >[B >: VectorC](that: B)(implicit arg0: (B) ⇒ PartiallyOrdered[B]): Boolean

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

    Definition Classes
    PartiallyOrdered
  43. def _oneAt(j: Int, size: Int = dim): VectorC

    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)

  44. def abs: VectorC

    Return the vector is absolute values.

  45. def addString(b: StringBuilder): StringBuilder

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  49. def apply(): Array[Complex]

    Get this vector's entire array.

  50. def apply(r: Range): VectorC

    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

  51. def apply(i: Int): Complex

    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

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

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

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

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

  56. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  57. def clone(): AnyRef

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

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

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

    Definition Classes
    Traversable → GenTraversable → GenericTraversableTemplate
  61. def contains(x: Complex): Boolean

    Determine whether x is contained in this vector.

    Determine whether x is contained in this vector.

    x

    the element to be checked

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

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

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

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

    Definition Classes
    TraversableOnce
  66. def count(p: (Complex) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  67. def countNeg: Int

    Count the number of strictly negative entries in this vector.

  68. def countPos: Int

    Count the number of strictly positive entries in this vector.

  69. def cumulate: VectorC

    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)

  70. val dim: Int

    the dimension/size of the vector

  71. def dot(b: VectorC): Complex

    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

  72. def drop(n: Int): Traversable[Complex]

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

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

    Definition Classes
    AnyRef
  75. 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
    VectorC → AnyRef → Any
  76. def exists(p: (Complex) ⇒ Boolean): Boolean

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

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

  78. def filter(p: (Complex) ⇒ Boolean): Traversable[Complex]

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  90. def forall(p: (Complex) ⇒ Boolean): Boolean

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

    Iterate over the vector element by element.

    Iterate over the vector element by element.

    f

    the function to apply

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

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

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

    Definition Classes
    TraversableLike → GenTraversableLike
  95. def hasDefiniteSize: Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  96. 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
    VectorC → AnyRef → Any
  97. def head: Complex

    Definition Classes
    TraversableLike → GenTraversableLike
  98. def headOption: Option[Complex]

    Definition Classes
    TraversableLike → GenTraversableLike
  99. def init: Traversable[Complex]

    Definition Classes
    TraversableLike → GenTraversableLike
  100. def inits: Iterator[Traversable[Complex]]

    Definition Classes
    TraversableLike
  101. def isEmpty: Boolean

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

    Definition Classes
    Any
  103. def isNonnegative: Boolean

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

  104. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  105. def last: Complex

    Definition Classes
    TraversableLike → GenTraversableLike
  106. def lastOption: Option[Complex]

    Definition Classes
    TraversableLike → GenTraversableLike
  107. def mag: Complex

    Find the element with the greatest magnitude in this vector.

  108. def map(f: (Complex) ⇒ Complex): VectorC

    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

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

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  110. def max(b: VectorC): VectorC

    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

  111. def max(e: Int = dim): Complex

    Find the maximum element in this vector.

    Find the maximum element in this vector.

    e

    the ending index (exclusive) for the search

  112. def max[B >: Complex](implicit cmp: Ordering[B]): Complex

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  114. def min(b: VectorC): VectorC

    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

  115. def min(e: Int = dim): Complex

    Find the minimum element in this vector.

    Find the minimum element in this vector.

    e

    the ending index (exclusive) for the search

  116. def min[B >: Complex](implicit cmp: Ordering[B]): Complex

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  118. def mkString: String

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

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

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

    Definition Classes
    AnyRef
  122. def newBuilder: Builder[Complex, Traversable[Complex]]

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  124. def norm: Complex

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

  125. def norm1: Complex

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

  126. def normSq: Complex

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

  127. def normalize: VectorC

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

  128. def normalize1: VectorC

    Normalize this vector to have a maximum of one.

  129. def normalizeU: VectorC

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

  130. final def notify(): Unit

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

    Definition Classes
    AnyRef
  132. def oneAt(j: Int, size: Int = dim): VectorC

    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)

  133. def par: ParIterable[Complex]

    Definition Classes
    Parallelizable
  134. def parCombiner: Combiner[Complex, ParIterable[Complex]]

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

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

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

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

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

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  143. def repr: Traversable[Complex]

    Definition Classes
    TraversableLike → GenTraversableLike
  144. def reversed: List[Complex]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  145. def sameDimensions(b: VectorC): 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

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

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

    Definition Classes
    TraversableLike → GenTraversableLike
  148. def scanRight[B, That](z: B)(op: (Complex, B) ⇒ B)(implicit bf: CanBuildFrom[Traversable[Complex], 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.

  149. def select(index: Array[Int]): VectorC

    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)

  150. def seq: Traversable[Complex]

    Definition Classes
    Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  151. def set(x: Complex): Unit

    Set each value in this vector to x.

    Set each value in this vector to x.

    x

    the value to be assigned

  152. def setAll(u: Array[Complex]): 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

  153. def size: Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  154. def slice(from: Int, till: Int): VectorC

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

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

  156. def span(p: (Complex) ⇒ Boolean): (Traversable[Complex], Traversable[Complex])

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

    Definition Classes
    TraversableLike → GenTraversableLike
  158. def sq: VectorC

    Square each element of this vector.

  159. def stringPrefix: String

    Definition Classes
    TraversableLike → GenTraversableLike
  160. def sum: Complex

    Sum the elements of this vector.

  161. def sum[B >: Complex](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  162. def sum_ne(i: Int): Complex

    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

  163. def sum_pos: Complex

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

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

    Definition Classes
    AnyRef
  165. def tail: Traversable[Complex]

    Definition Classes
    TraversableLike → GenTraversableLike
  166. def tails: Iterator[Traversable[Complex]]

    Definition Classes
    TraversableLike
  167. def take(n: Int): Traversable[Complex]

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

    Definition Classes
    TraversableLike → GenTraversableLike
  169. def thisCollection: Traversable[Complex]

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  172. def toBuffer[B >: Complex]: Buffer[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  173. def toCollection(repr: Traversable[Complex]): Traversable[Complex]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  174. def toIndexedSeq: IndexedSeq[Complex]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  175. def toIterable: Iterable[Complex]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  176. def toIterator: Iterator[Complex]

    Definition Classes
    TraversableLike → GenTraversableOnce
  177. def toList: List[Complex]

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  179. def toSeq: Seq[Complex]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  180. def toSet[B >: Complex]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  181. def toStream: Stream[Complex]

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

    Convert this complex vector to a String.

    Convert this complex vector to a String.

    Definition Classes
    VectorC → TraversableLike → AnyRef → Any
  183. def toTraversable: Traversable[Complex]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  184. def toVector: Vector[Complex]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  185. def transpose[B](implicit asTraversable: (Complex) ⇒ 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.

  186. def tryCompareTo[B >: VectorC](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
    VectorC → PartiallyOrdered
  187. def unary_-(): VectorC

    Return the negative of this vector (unary minus).

  188. def unzip[A1, A2](implicit asPair: (Complex) ⇒ (A1, A2)): (Traversable[A1], Traversable[A2])

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

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

  191. def update(r: Range, x: Complex): 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

  192. def update(i: Int, x: Complex): 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

  193. var v: Array[Complex]

    the 1D array used to store vector elements

    the 1D array used to store vector elements

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

    Definition Classes
    TraversableLike
  195. def view: TraversableView[Complex, Traversable[Complex]]

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

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

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

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

    Definition Classes
    TraversableLike → FilterMonadic
  200. def ~^(s: Double): VectorC

    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

  201. def ~^=(s: Double): 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

Inherited from Serializable

Inherited from Serializable

Inherited from Error

Inherited from PartiallyOrdered[VectorC]

Inherited from Traversable[Complex]

Inherited from GenTraversable[Complex]

Inherited from GenericTraversableTemplate[Complex, Traversable]

Inherited from TraversableLike[Complex, Traversable[Complex]]

Inherited from GenTraversableLike[Complex, Traversable[Complex]]

Inherited from Parallelizable[Complex, ParIterable[Complex]]

Inherited from TraversableOnce[Complex]

Inherited from GenTraversableOnce[Complex]

Inherited from FilterMonadic[Complex, Traversable[Complex]]

Inherited from HasNewBuilder[Complex, Traversable[Complex]]

Inherited from AnyRef

Inherited from Any

Ungrouped