public class OneDimensionalDoubleVector extends AbstractNumberVector
Modifier and Type | Class and Description |
---|---|
static class |
OneDimensionalDoubleVector.Factory
Factory class.
|
Modifier and Type | Field and Description |
---|---|
static OneDimensionalDoubleVector.Factory |
STATIC
Static factory instance.
|
(package private) double |
val
The actual data value.
|
ATTRIBUTE_SEPARATOR
Constructor and Description |
---|
OneDimensionalDoubleVector(double val)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
double |
doubleValue(int dimension)
Returns the value in the specified dimension as double.
|
Vector |
getColumnVector()
Returns a Vector representing in one column and
getDimensionality() rows the values of this NumberVector of V. |
int |
getDimensionality()
The dimensionality of the vector space where of this FeatureVector of V is
an element.
|
Double |
getValue(int dimension)
Deprecated.
|
long |
longValue(int dimension)
Returns the value in the specified dimension as long.
|
byteValue, floatValue, getMax, getMin, intValue, shortValue
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
toString
public static final OneDimensionalDoubleVector.Factory STATIC
double val
public OneDimensionalDoubleVector(double val)
val
- Valuepublic int getDimensionality()
FeatureVector
public double doubleValue(int dimension)
NumberVector
getValue(dim).doubleValue()
, but usually this is much more
efficient due to boxing/unboxing cost.dimension
- the desired dimension, where 0 ≤ dimension <
this.getDimensionality()
public long longValue(int dimension)
NumberVector
getValue(dim).longValue()
, but usually this is much more efficient
due to boxing/unboxing cost.dimension
- the desired dimension, where 0 ≤ dimension <
this.getDimensionality()
@Deprecated public Double getValue(int dimension)
FeatureVector
dimension
- the desired dimension, where 0 ≤ dimension ≤
this.getDimensionality()-1
public Vector getColumnVector()
NumberVector
getDimensionality()
rows the values of this NumberVector of V.getDimensionality()
rows the values of this
NumberVector of VCopyright © 2015 ELKI Development Team, Lehr- und Forschungseinheit für Datenbanksysteme, Ludwig-Maximilians-Universität München. License information.