Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/19/21 16:07:45 (3 years ago)
Author:
mkommend
Message:

#2521: Merged trunk changes into branch.

Location:
branches/2521_ProblemRefactoring/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/FeynmanBonus3.cs

    r17678 r18086  
    2929      get {
    3030        return string.Format(
    31           "Compton Scattering: E_n/(1+E_n/(m*c**2)*(1-cos(theta))) | {0} samples | {1}", trainingSamples,
     31          "Compton Scattering: E_n/(1+E_n/(m*c**2)*(1-cos(theta))) | {0}",
    3232          noiseRatio == null ? "no noise" : string.Format(System.Globalization.CultureInfo.InvariantCulture, "noise={0:g}",noiseRatio));
    3333      }
     
    3737
    3838    protected override string[] VariableNames {
    39       get { return new[] {"E_n", "m", "c", "theta", noiseRatio == null ? "K" : "K_noise"}; }
     39      get { return noiseRatio == null ? new[] { "E_n", "m", "c", "theta", "K" } : new[] { "E_n", "m", "c", "theta", "K", "K_noise" }; }
    4040    }
    4141
     
    7171      }
    7272
    73       if (noiseRatio != null) {
    74         var K_noise     = new List<double>();
    75         var sigma_noise = (double) noiseRatio * K.StandardDeviationPop();
    76         K_noise.AddRange(K.Select(md => md + NormalDistributedRandom.NextDouble(rand, 0, sigma_noise)));
    77         data.Remove(K);
    78         data.Add(K_noise);
    79       }
     73      var targetNoise = ValueGenerator.GenerateNoise(K, rand, noiseRatio);
     74      if (targetNoise != null) data.Add(targetNoise);
    8075
    8176      return data;
Note: See TracChangeset for help on using the changeset viewer.