Interface SMAggregateEuclidian
- All Superinterfaces:
SimilarityMeasure
,SMAggregate
,SMAggregateMinkowski
,SMAggregateWeighted
- All Known Implementing Classes:
SMAggregateEuclidianImpl
The Euclidian aggregation is the same as Minkowski aggregation with a fixed p = 2.
Φ(s, …, si) = (∑ni=1 (ωi · s2i))1/2
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Name of similarity measure is "AggregateEuclidian".Fields inherited from interface de.uni_trier.wi2.procake.similarity.SimilarityMeasure
LOG_ORDER_NAME_NOT_FOUND
Fields inherited from interface de.uni_trier.wi2.procake.similarity.base.aggregate.SMAggregate
DEFAULT_IGNORE_NULL_ATTRIBUTES_IN_QUERY, LOG_ATTRIBUTE_NAME_NOT_FOUND, LOG_ATTRIBUTE_NOT_FOUND, PROPERTY_USER_WEIGHT
Fields inherited from interface de.uni_trier.wi2.procake.similarity.base.aggregate.SMAggregateMinkowski
DEFAULT_MINKOWSKY_P
Fields inherited from interface de.uni_trier.wi2.procake.similarity.base.aggregate.SMAggregateWeighted
DEFAULT_WEIGHT
-
Method Summary
Methods inherited from interface de.uni_trier.wi2.procake.similarity.SimilarityMeasure
compute, getDataClass, getName, getSystemName, isForceOverride, isReusable, setForceOverride
Methods inherited from interface de.uni_trier.wi2.procake.similarity.base.aggregate.SMAggregate
getSimilaritiesToUse, getSimilaritiesToUse, getSimilarityToUse, isIgnoreNullAttributesInQuery, setIgnoreNullAttributesInQuery, setSimilarityToUse
Methods inherited from interface de.uni_trier.wi2.procake.similarity.base.aggregate.SMAggregateMinkowski
getMinkowskiP, setMinkowskiP
Methods inherited from interface de.uni_trier.wi2.procake.similarity.base.aggregate.SMAggregateWeighted
getAttributeWeights, getDefaultWeight, getWeight, setDefaultWeight, setWeight
-
Field Details
-
NAME
Name of similarity measure is "AggregateEuclidian".- See Also:
-