Package | Description |
---|---|
de.lmu.ifi.dbs.elki.data |
Basic classes for different data types, database object types and label types.
|
de.lmu.ifi.dbs.elki.data.projection |
Data projections.
|
de.lmu.ifi.dbs.elki.data.type |
Data type information, also used for type restrictions.
|
Modifier and Type | Interface and Description |
---|---|
static interface |
NumberVector.Factory<V extends NumberVector<? extends N>,N extends Number>
Factory API for this feature vector.
|
static interface |
SparseNumberVector.Factory<V extends SparseNumberVector<N>,N extends Number>
Factory for sparse number vectors: make from a dim-value map.
|
Modifier and Type | Class and Description |
---|---|
static class |
AbstractNumberVector.Factory<V extends AbstractNumberVector<N>,N extends Number>
Factory class.
|
static class |
BitVector.Factory
Factory for bit vectors.
|
static class |
ByteVector.Factory
Factory for Byte vectors.
|
static class |
DoubleVector.Factory
Factory for Double vectors.
|
static class |
FloatVector.Factory
Factory for float vectors.
|
static class |
IntegerVector.Factory
Factory for integer vectors.
|
static class |
OneDimensionalDoubleVector.Factory
Factory class.
|
static class |
ShortVector.Factory
Factory for Short vectors.
|
static class |
SparseByteVector.Factory
Factory class.
|
static class |
SparseDoubleVector.Factory
Factory class.
|
static class |
SparseFloatVector.Factory
Factory class.
|
static class |
SparseIntegerVector.Factory
Factory class.
|
static class |
SparseShortVector.Factory
Factory class.
|
Modifier and Type | Field and Description |
---|---|
private FeatureVector.Factory<V,F> |
FeatureSelection.factory
Object factory.
|
Modifier and Type | Method and Description |
---|---|
private static <V extends FeatureVector<F>,F> |
FeatureSelection.getAdapter(FeatureVector.Factory<V,F> factory)
Choose the best adapter for this.
|
Modifier and Type | Field and Description |
---|---|
private FeatureVector.Factory<V,?> |
VectorFieldTypeInformation.factory
Object factory for producing new instances.
|
Modifier and Type | Method and Description |
---|---|
FeatureVector.Factory<V,?> |
VectorFieldTypeInformation.getFactory()
Get the object type factory.
|
Constructor and Description |
---|
VectorFieldTypeInformation(FeatureVector.Factory<V,?> factory,
int dim)
Constructor with given dimensionality and factory, so usually an instance.
|
VectorFieldTypeInformation(FeatureVector.Factory<V,?> factory,
int dim,
ByteBufferSerializer<? super V> serializer)
Constructor with given dimensionality and factory, so usually an instance.
|
VectorFieldTypeInformation(FeatureVector.Factory<V,?> factory,
int mindim,
int maxdim,
ByteBufferSerializer<? super V> serializer)
Constructor with given dimensionality and factory, so usually an instance.
|
VectorFieldTypeInformation(FeatureVector.Factory<V,?> factory,
int dim,
String[] labels)
Constructor with given dimensionality and factory, so usually an instance.
|
VectorFieldTypeInformation(FeatureVector.Factory<V,?> factory,
int dim,
String[] labels,
ByteBufferSerializer<? super V> serializer)
Constructor with given dimensionality and factory, so usually an instance.
|