Uses of Class
elki.data.DoubleVector
-
Packages that use DoubleVector Package Description elki.clustering.correlation Correlation clustering algorithms.elki.clustering.uncertain Clustering algorithms for uncertain data.elki.data Basic classes for different data types, database object types and label types.elki.data.type Data type information, also used for type restrictions.elki.data.uncertain Uncertain data objects.elki.datasource.filter.transform Data space transformations.elki.projection Data projections (see also preprocessing filters for basic projections).elki.timeseries Algorithms for change point detection in time series. -
-
Uses of DoubleVector in elki.clustering.correlation
Methods in elki.clustering.correlation that return types with arguments of type DoubleVector Modifier and Type Method Description private Relation<DoubleVector>
CASH. buildDerivatorDB(Relation<ParameterizationFunction> relation, DBIDs ids)
Builds a database for the derivator consisting of the ids in the specified interval. -
Uses of DoubleVector in elki.clustering.uncertain
Method parameters in elki.clustering.uncertain with type arguments of type DoubleVector Modifier and Type Method Description protected C
CenterOfMassMetaClustering. runClusteringAlgorithm(java.lang.Object parent, DBIDs ids, DataStore<DoubleVector> store, int dim, java.lang.String title)
Run a clustering algorithm on a single instance.protected Clustering<?>
RepresentativeUncertainClustering. runClusteringAlgorithm(java.lang.Object parent, DBIDs ids, DataStore<DoubleVector> store, int dim, java.lang.String title)
Run a clustering algorithm on a single instance. -
Uses of DoubleVector in elki.data
Fields in elki.data with type parameters of type DoubleVector Modifier and Type Field Description static ByteBufferSerializer<DoubleVector>
DoubleVector. BYTE_SERIALIZER
Serializer for up to 127 dimensions.static ByteBufferSerializer<DoubleVector>
DoubleVector. SHORT_SERIALIZER
Serializer for up to 2^15-1 dimensions.static ByteBufferSerializer<DoubleVector>
DoubleVector. VARIABLE_SERIALIZER
Serializer using varint encoding.Methods in elki.data that return DoubleVector Modifier and Type Method Description static DoubleVector
DoubleVector. copy(double[] vals)
Copy a double array into a new vector.DoubleVector
DoubleVector.ShortSerializer. fromByteBuffer(java.nio.ByteBuffer buffer)
DoubleVector
DoubleVector.SmallSerializer. fromByteBuffer(java.nio.ByteBuffer buffer)
DoubleVector
DoubleVector.VariableSerializer. fromByteBuffer(java.nio.ByteBuffer buffer)
<A> DoubleVector
DoubleVector.Factory. newFeatureVector(A array, ArrayAdapter<? extends java.lang.Number,A> adapter)
DoubleVector
DoubleVector.Factory. newNumberVector(double[] values)
<A> DoubleVector
DoubleVector.Factory. newNumberVector(A array, NumberArrayAdapter<?,? super A> adapter)
static DoubleVector
DoubleVector. wrap(double[] vals)
Wrap a double array as vector (without copying).Methods in elki.data that return types with arguments of type DoubleVector Modifier and Type Method Description ByteBufferSerializer<DoubleVector>
DoubleVector.Factory. getDefaultSerializer()
java.lang.Class<? super DoubleVector>
DoubleVector.Factory. getRestrictionClass()
Methods in elki.data with parameters of type DoubleVector Modifier and Type Method Description int
DoubleVector.ShortSerializer. getByteSize(DoubleVector vec)
int
DoubleVector.SmallSerializer. getByteSize(DoubleVector vec)
int
DoubleVector.VariableSerializer. getByteSize(DoubleVector vec)
void
DoubleVector.ShortSerializer. toByteBuffer(java.nio.ByteBuffer buffer, DoubleVector vec)
void
DoubleVector.SmallSerializer. toByteBuffer(java.nio.ByteBuffer buffer, DoubleVector vec)
void
DoubleVector.VariableSerializer. toByteBuffer(java.nio.ByteBuffer buffer, DoubleVector vec)
-
Uses of DoubleVector in elki.data.type
Fields in elki.data.type with type parameters of type DoubleVector Modifier and Type Field Description static VectorFieldTypeInformation<DoubleVector>
TypeUtil. DOUBLE_VECTOR_FIELD
Input type for algorithms that require number vector fields. -
Uses of DoubleVector in elki.data.uncertain
Fields in elki.data.uncertain declared as DoubleVector Modifier and Type Field Description private DoubleVector[]
UnweightedDiscreteUncertainObject. samples
Sample vectors.private DoubleVector[]
WeightedDiscreteUncertainObject. samples
SamplesMethods in elki.data.uncertain that return DoubleVector Modifier and Type Method Description abstract DoubleVector
AbstractUncertainObject. drawSample(java.util.Random rand)
DoubleVector
SimpleGaussianContinuousUncertainObject. drawSample(java.util.Random rand)
DoubleVector
UncertainObject. drawSample(java.util.Random rand)
Draw a random sampled instance.DoubleVector
UniformContinuousUncertainObject. drawSample(java.util.Random rand)
DoubleVector
UnweightedDiscreteUncertainObject. drawSample(java.util.Random rand)
DoubleVector
WeightedDiscreteUncertainObject. drawSample(java.util.Random rand)
abstract DoubleVector
AbstractUncertainObject. getCenterOfMass()
DoubleVector
SimpleGaussianContinuousUncertainObject. getCenterOfMass()
DoubleVector
UncertainObject. getCenterOfMass()
Get the center of mass of the uncertain object.DoubleVector
UniformContinuousUncertainObject. getCenterOfMass()
DoubleVector
UnweightedDiscreteUncertainObject. getCenterOfMass()
DoubleVector
WeightedDiscreteUncertainObject. getCenterOfMass()
DoubleVector
DiscreteUncertainObject. getSample(int i)
Get the i'th vector.DoubleVector
UnweightedDiscreteUncertainObject. getSample(int i)
DoubleVector
WeightedDiscreteUncertainObject. getSample(int i)
Constructors in elki.data.uncertain with parameters of type DoubleVector Constructor Description UnweightedDiscreteUncertainObject(DoubleVector[] samples)
Constructor.WeightedDiscreteUncertainObject(DoubleVector[] samples, double[] weights)
Constructor. -
Uses of DoubleVector in elki.datasource.filter.transform
Methods in elki.datasource.filter.transform that return types with arguments of type DoubleVector Modifier and Type Method Description HistogramJitterFilter<DoubleVector>
HistogramJitterFilter.Par. make()
NumberVectorFeatureSelectionFilter<DoubleVector>
NumberVectorFeatureSelectionFilter.Par. make()
NumberVectorRandomFeatureSelectionFilter<DoubleVector>
NumberVectorRandomFeatureSelectionFilter.Par. make()
-
Uses of DoubleVector in elki.projection
Methods in elki.projection that return types with arguments of type DoubleVector Modifier and Type Method Description Relation<DoubleVector>
SNE. autorun(Database database)
Relation<DoubleVector>
TSNE. autorun(Database database)
Relation<DoubleVector>
BarnesHutTSNE. run(Database database, Relation<O> relation)
Relation<DoubleVector>
SNE. run(Relation<O> relation)
Perform SNE projection.Relation<DoubleVector>
TSNE. run(Relation<O> relation)
Perform tSNE projection. -
Uses of DoubleVector in elki.timeseries
Method parameters in elki.timeseries with type arguments of type DoubleVector Modifier and Type Method Description ChangePoints
OfflineChangePointDetectionAlgorithm.Instance. run(Relation<DoubleVector> relation)
Run the change point detection algorithm on a data relation.ChangePoints
OfflineChangePointDetectionAlgorithm. run(Relation<DoubleVector> relation)
Executes multiple change point detection for given relation
-