Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/28/21 11:31:24 (3 years ago)
Author:
mkommend
Message:

#3075: Changed Feynman problem instances to new normal distributed RNG.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman18.cs

    r17805 r17966  
    7373        var t1_noise    = new List<double>();
    7474        var sigma_noise = (double) Math.Sqrt(noiseRatio.Value) * t1.StandardDeviationPop();
    75         t1_noise.AddRange(t1.Select(md => md + NormalDistributedRandom.NextDouble(rand, 0, sigma_noise)));
     75        t1_noise.AddRange(t1.Select(md => md + NormalDistributedRandomPolar.NextDouble(rand, 0, sigma_noise)));
    7676        data.Remove(t1);
    7777        data.Add(t1_noise);
Note: See TracChangeset for help on using the changeset viewer.