Click or drag to resize

ClusterSetTInstance Class

Represents a set of ClusterTInstance elements that were found during the execution of the clustering algorithm separated at some minimum distance.
Inheritance Hierarchy
SystemObject
  AglomeraClusterSetTInstance

Namespace:  Aglomera
Assembly:  Aglomera (in Aglomera.dll) Version: 1.1.0
Syntax
C#
public class ClusterSet<TInstance> : IEnumerable<Cluster<TInstance>>, 
	IEnumerable
where TInstance : Object, IComparable<TInstance>
Request Example View Source

Type Parameters

TInstance
The type of instance considered.

The ClusterSetTInstance type exposes the following members.

Constructors
  NameDescription
Public methodClusterSetTInstance
Creates a new ClusterSetTInstance with the given clusters and distance.
Top
Properties
  NameDescription
Public propertyCount
Gets the number of clusters.
Public propertyDissimilarity
The minimum dissimilarity/distance at which the clusters were found.
Public propertyItem
Gets the cluster at the give index.
Top
Methods
  NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetEnumerator
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString
Returns a string representation for the cluster-set in the form 'Dissimilarity {cluster1, cluster2, ..., clusterN}'.
(Overrides ObjectToString.)
Public methodToString(Boolean)
Returns a string representation for the cluster-set in the form 'Dissimilarity {cluster1, cluster2, ..., clusterN}'. The presentation of the dissimilarity value is optional.
Top
See Also