Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/19/21 16:07:45 (2 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/Feynman67.cs

    r17678 r18086  
    2828    public override string Name {
    2929      get {
    30         return string.Format("II.13.23 rho_c_0/sqrt(1-v**2/c**2) | {0} samples | {1}", trainingSamples,
     30        return string.Format("II.13.23 rho_c_0/sqrt(1-v**2/c**2) | {0}",
    3131          noiseRatio == null ? "no noise" : string.Format(System.Globalization.CultureInfo.InvariantCulture, "noise={0:g}",noiseRatio));
    3232      }
     
    3636
    3737    protected override string[] VariableNames {
    38       get { return new[] {"rho_c_0", "v", "c", noiseRatio == null ? "rho_c" : "rho_c_noise"}; }
     38      get { return noiseRatio == null ? new[] { "rho_c_0", "v", "c", "rho_c" } : new[] { "rho_c_0", "v", "c", "rho_c", "rho_c_noise" }; }
    3939    }
    4040
     
    6868      }
    6969
    70       if (noiseRatio != null) {
    71         var rho_c_noise = new List<double>();
    72         var sigma_noise = (double) noiseRatio * rho_c.StandardDeviationPop();
    73         rho_c_noise.AddRange(rho_c.Select(md => md + NormalDistributedRandom.NextDouble(rand, 0, sigma_noise)));
    74         data.Remove(rho_c);
    75         data.Add(rho_c_noise);
    76       }
     70      var targetNoise = ValueGenerator.GenerateNoise(rho_c, rand, noiseRatio);
     71      if (targetNoise != null) data.Add(targetNoise);
    7772
    7873      return data;
Note: See TracChangeset for help on using the changeset viewer.