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 CCenterOfMassMetaClustering. 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_SERIALIZERSerializer for up to 127 dimensions.static ByteBufferSerializer<DoubleVector>DoubleVector. SHORT_SERIALIZERSerializer for up to 2^15-1 dimensions.static ByteBufferSerializer<DoubleVector>DoubleVector. VARIABLE_SERIALIZERSerializer using varint encoding.Methods in elki.data that return DoubleVector Modifier and Type Method Description static DoubleVectorDoubleVector. copy(double[] vals)Copy a double array into a new vector.DoubleVectorDoubleVector.ShortSerializer. fromByteBuffer(java.nio.ByteBuffer buffer)DoubleVectorDoubleVector.SmallSerializer. fromByteBuffer(java.nio.ByteBuffer buffer)DoubleVectorDoubleVector.VariableSerializer. fromByteBuffer(java.nio.ByteBuffer buffer)<A> DoubleVectorDoubleVector.Factory. newFeatureVector(A array, ArrayAdapter<? extends java.lang.Number,A> adapter)DoubleVectorDoubleVector.Factory. newNumberVector(double[] values)<A> DoubleVectorDoubleVector.Factory. newNumberVector(A array, NumberArrayAdapter<?,? super A> adapter)static DoubleVectorDoubleVector. 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 intDoubleVector.ShortSerializer. getByteSize(DoubleVector vec)intDoubleVector.SmallSerializer. getByteSize(DoubleVector vec)intDoubleVector.VariableSerializer. getByteSize(DoubleVector vec)voidDoubleVector.ShortSerializer. toByteBuffer(java.nio.ByteBuffer buffer, DoubleVector vec)voidDoubleVector.SmallSerializer. toByteBuffer(java.nio.ByteBuffer buffer, DoubleVector vec)voidDoubleVector.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_FIELDInput 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. samplesSample vectors.private DoubleVector[]WeightedDiscreteUncertainObject. samplesSamplesMethods in elki.data.uncertain that return DoubleVector Modifier and Type Method Description abstract DoubleVectorAbstractUncertainObject. drawSample(java.util.Random rand)DoubleVectorSimpleGaussianContinuousUncertainObject. drawSample(java.util.Random rand)DoubleVectorUncertainObject. drawSample(java.util.Random rand)Draw a random sampled instance.DoubleVectorUniformContinuousUncertainObject. drawSample(java.util.Random rand)DoubleVectorUnweightedDiscreteUncertainObject. drawSample(java.util.Random rand)DoubleVectorWeightedDiscreteUncertainObject. drawSample(java.util.Random rand)abstract DoubleVectorAbstractUncertainObject. getCenterOfMass()DoubleVectorSimpleGaussianContinuousUncertainObject. getCenterOfMass()DoubleVectorUncertainObject. getCenterOfMass()Get the center of mass of the uncertain object.DoubleVectorUniformContinuousUncertainObject. getCenterOfMass()DoubleVectorUnweightedDiscreteUncertainObject. getCenterOfMass()DoubleVectorWeightedDiscreteUncertainObject. getCenterOfMass()DoubleVectorDiscreteUncertainObject. getSample(int i)Get the i'th vector.DoubleVectorUnweightedDiscreteUncertainObject. getSample(int i)DoubleVectorWeightedDiscreteUncertainObject. 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 ChangePointsOfflineChangePointDetectionAlgorithm.Instance. run(Relation<DoubleVector> relation)Run the change point detection algorithm on a data relation.ChangePointsOfflineChangePointDetectionAlgorithm. run(Relation<DoubleVector> relation)Executes multiple change point detection for given relation
-