object SparseVectorL extends Serializable
The SparseVectorL
object is the companion object for the SparseVectorL
class.
- Alphabetic
- By Inheritance
- SparseVectorL
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
type
RowMap = SortedLinkedHashMap[Int, Long]
Shorthand type definition for sparse vector
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
++(b: Long, u: SparseVectorL): SparseVectorL
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
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
apply(xs: Array[String], skip: Int): SparseVectorL
Create a
SparseVectorL
from an array ofString
s, skipping the first 'skip' elements.Create a
SparseVectorL
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]): SparseVectorL
Create a
SparseVectorL
from an array ofString
s.Create a
SparseVectorL
from an array ofString
s.- xs
the array of the
String
s
-
def
apply(x: String, xs: String*): SparseVectorL
Create a
SparseVectorL
from one or more values (repeated valuesString
*).Create a
SparseVectorL
from one or more values (repeated valuesString
*).- x
the first
String
- xs
the rest of the
String
s
-
def
apply(xs: Seq[Long]): SparseVectorL
Create a
SparseVectorL
from a sequence ofLong
s.Create a
SparseVectorL
from a sequence ofLong
s.- xs
the sequence of the Long numbers
-
def
apply(x: Long, xs: Long*): SparseVectorL
Create a
SparseVectorL
from one or more values (repeated valuesLong
*).Create a
SparseVectorL
from one or more values (repeated valuesLong
*).- x
the first
Long
number- xs
the rest of the
Long
numbers
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
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()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
range(start: Int, end: Int): SparseVectorL
Return a
SparseVectorL
containing a sequence of increasing integers in a range.Return a
SparseVectorL
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(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )