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/LogFitting.cs

    r11913 r11914  
    6767    }
    6868
    69     public DataRow CalculateFittedLine(double[] dataPoints, string rowName) {
    70       DataRow newRow = new DataRow(rowName);
     69    public DataRow CalculateFittedLine(double[] dataPoints) {
     70      DataRow newRow = new DataRow();
    7171      double c0, c1;
    7272      Calculate(dataPoints, out c0, out c1);
     
    8080    }
    8181
    82     public DataRow CalculateFittedLine(double[] y, double[] x, string rowName) {
    83       DataRow newRow = new DataRow(rowName);
     82    public DataRow CalculateFittedLine(double[] y, double[] x) {
     83      DataRow newRow = new DataRow();
    8484      double c0, c1;
    8585      Calculate(y, x, out c0, out c1);
Note: See TracChangeset for help on using the changeset viewer.