Example #1
0
 public RowCluster(string Name, DataSet Data, Predicate Where, FNodeSet Fields, FNode Weight, int Count)
 {
     this._data = Data;
     this._where = Where;
     this._fields = Fields;
     this._count = Count;
     this._rule = new RowClusterRuleEuclid();
     this._initializer = new RowClusterInitializerSpectrum();
     this._means = this._initializer.Initialize(Data, Where, Fields, Count);
     this._weight = Weight;
     this.Name = Name;
 }
Example #2
0
 public RowClusterCellFunction(RowClusterRule Rule, RecordSet Means)
     : base("row_cluster", -1, null, CellAffinity.INT)
 {
     this._rule = Rule;
     this._means = Means;
 }