object SparseVectorI extends Serializable
The SparseVectorI
object is the companion object for the SparseVectorI
class.
- Alphabetic
- By Inheritance
- SparseVectorI
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
type
RowMap = SortedLinkedHashMap[Int, Int]
Shorthand type definition for sparse vector
Value Members
-
def
++(b: Int, u: SparseVectorI): SparseVectorI
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
-
def
apply(xs: Array[String], skip: Int): SparseVectorI
Create a
SparseVectorI
from an array ofString
s, skipping the first 'skip' elements.Create a
SparseVectorI
from an array ofString
s, skipping the first 'skip' elements. If an element is non-numeric, use its hashcode. FIX: Might be better to map non-numericString
s to ordinal values.- xs
the array of the
String
s- skip
the number of elements at the beginning to skip (e.g., id column)
-
def
apply(xs: Array[String]): SparseVectorI
Create a
SparseVectorI
from an array ofString
s.Create a
SparseVectorI
from an array ofString
s.- xs
the array of the
String
s
-
def
apply(x: String, xs: String*): SparseVectorI
Create a
SparseVectorI
from one or more values (repeated valuesString
*).Create a
SparseVectorI
from one or more values (repeated valuesString
*).- x
the first
String
- xs
the rest of the
String
s
-
def
apply(xs: Seq[Int]): SparseVectorI
Create a
SparseVectorI
from a sequence ofInt
s.Create a
SparseVectorI
from a sequence ofInt
s.- xs
the sequence of the Int numbers
-
def
apply(x: Int, xs: Int*): SparseVectorI
Create a
SparseVectorI
from one or more values (repeated valuesInt
*).Create a
SparseVectorI
from one or more values (repeated valuesInt
*).- x
the first
Int
number- xs
the rest of the
Int
numbers
-
def
range(start: Int, end: Int): SparseVectorI
Return a
SparseVectorI
containing a sequence of increasing integers in a range.Return a
SparseVectorI
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)