Exemplo n.º 1
0
 /// <summary>
 ///   Initializes a new instance of the <see cref="GaussianClusterCollection"/> class.
 /// </summary>
 ///
 /// <param name="owner">The owner collection.</param>
 /// <param name="list">The list.</param>
 ///
 public GaussianClusterCollection(GaussianMixtureModel owner, IList <GaussianCluster> list)
     : base(list)
 {
     this.owner = owner;
 }
Exemplo n.º 2
0
 /// <summary>
 ///   Initializes a new instance of the <see cref="GaussianCluster"/> class.
 /// </summary>
 ///
 /// <param name="owner">The owner collection.</param>
 /// <param name="index">The cluster index.</param>
 ///
 public GaussianCluster(GaussianMixtureModel owner, int index)
 {
     this.owner = owner;
     this.index = index;
 }