Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/09/11 00:15:33 (13 years ago)
Author:
abeham
Message:

#1465

  • Added movie view for HistogramHistory
  • Added QualityDistributionAnalyzer for analyzing the development of the quality distributions in a population
  • Added AggregatedHistogramHistoryView for displaying a histogram of the accumulated data in a history
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/histogram/HeuristicLab.Analysis/3.3/DataVisualization/Histogram.cs

    r5961 r5994  
    5252      values = new ObservableCollection<double>();
    5353    }
     54    public Histogram(string name)
     55      : base(name) {
     56      values = new ObservableCollection<double>();
     57    }
     58    public Histogram(string name, string description)
     59      : base(description) {
     60      values = new ObservableCollection<double>();
     61    }
    5462
    5563    public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset for help on using the changeset viewer.