object VectorQ extends Serializable
The VectorQ
object is the companion object for the VectorQ
class.
- Alphabetic
- By Inheritance
- VectorQ
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def ++(b: Rational, u: VectorQ): VectorQ
Concatenate scalar 'b' and vector 'u'.
Concatenate scalar 'b' and vector 'u'.
- b
the scalar to be concatenated - first part
- u
the vector to be concatenated - second part (same kind, more efficient)
- def ++(b: Rational, u: VectoQ): VectorQ
Concatenate scalar 'b' and vector 'u'.
Concatenate scalar 'b' and vector 'u'.
- b
the scalar to be concatenated - first part
- u
the vector to be concatenated - second part (any kind)
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply(xs: Array[String], skip: Int): VectorQ
Create a
VectorQ
from an array of Strings, skipping the first 'skip' elements.Create a
VectorQ
from an array of Strings, skipping the first 'skip' elements. If an element is non-numeric, use its hashcode. FIX: Might be better to map non-numeric Strings to ordinal values.- xs
the array of the Strings
- skip
the number of elements at the beginning to skip (e.g., id column)
- def apply(xs: Array[String]): VectorQ
Create a
VectorQ
from an array of Strings.Create a
VectorQ
from an array of Strings. For numeric types, assign missing value indicator upon format failure.- xs
the array of the Strings
- def apply(x: String, xs: String*): VectorQ
Create a
VectorQ
from one or more values (repeated values String*).Create a
VectorQ
from one or more values (repeated values String*). For numeric types, assign missing value indicator upon format failure.- x
the first String
- xs
the rest of the Strings
- def apply(xs: Seq[Rational]): VectorQ
Create a
VectorQ
from a sequence/array ofRational
s.Create a
VectorQ
from a sequence/array ofRational
s.- xs
the sequence/array of the
Rational
numbers
- def apply(x: Rational, xs: Rational*): VectorQ
Create a
VectorQ
from one or more values (repeated valuesRational
*).Create a
VectorQ
from one or more values (repeated valuesRational
*).- x
the first
Rational
number- xs
the rest of the
Rational
numbers
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fill(n: Int)(x: Rational): VectorQ
Create a
VectorQ
with 'n' elements and fill it with the value 'x'.Create a
VectorQ
with 'n' elements and fill it with the value 'x'.- n
the number of elements
- x
the value to assign to all elements
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def one(size: Int): VectorQ
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
- def range(start: Int, end: Int): VectorQ
Return a
VectorQ
containing a sequence of increasing integers in a range.Return a
VectorQ
containing a sequence of increasing integers in a range.- start
the start value of the vector, inclusive
- end
the end value of the vector, exclusive (i.e., the first value not returned)
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated