Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/05/15 16:09:10 (9 years ago)
Author:
ascheibe
Message:

#2031 implemented review comments

Location:
trunk/sources/HeuristicLab.Analysis/3.3/Statistics/Fitting
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis/3.3/Statistics/Fitting/IFitting.cs

    r11913 r11914  
    2222namespace HeuristicLab.Analysis.Statistics {
    2323  public interface IFitting {
    24     void Calculate(double[] dataPoints, out double p0, out double p1);
    25     void Calculate(double[] y, double[] x, out double p0, out double p1);
    26 
    27     DataRow CalculateFittedLine(double[] dataPoints, string rowName);
    28     DataRow CalculateFittedLine(double[] y, double[] x, string rowName);
     24    DataRow CalculateFittedLine(double[] dataPoints);
     25    DataRow CalculateFittedLine(double[] y, double[] x);
    2926  }
    3027}
Note: See TracChangeset for help on using the changeset viewer.