Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/29/11 14:58:06 (12 years ago)
Author:
sforsten
Message:

#1669: Input variables of Korn functions have been adjusted according to the description.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/RegressionBenchmarks/HeuristicLab.Problems.DataAnalysis.Benchmarks/3.4/RegressionBenchmarks/Korns/KornFunctionTwelve.cs

    r7044 r7095  
    4141        + "target expressions are limited to one basis function whose maximum depth is three grammar nodes.\"";
    4242      targetVariable = "Y";
    43       inputVariables = new List<string>() { "X0", "X4" };
     43      inputVariables = new List<string>() { "X0", "X1", "X2", "X3", "X4" };
    4444      trainingPartition = new IntRange(0, 5000);
    4545      testPartition = new IntRange(5001, 10000);
     
    5151      for (int i = 0; i < data[0].Count; i++) {
    5252        x0 = data[0][i];
    53         x4 = data[0][i];
     53        x4 = data[4][i];
    5454        results.Add(2.0 - (2.1 * (Math.Cos(9.8 * x0) * Math.Sin(1.3 * x4))));
    5555      }
Note: See TracChangeset for help on using the changeset viewer.