Changeset 17973 for trunk/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman31.cs
- Timestamp:
- 05/04/21 14:29:30 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman31.cs
r17966 r17973 36 36 37 37 protected override string[] VariableNames { 38 get { return n ew[] {"lambd", "d", "n", noiseRatio == null ? "theta" : "theta_noise"}; }38 get { return noiseRatio == null ? new[] { "lambd", "d", "n", "theta" } : new[] { "lambd", "d", "n", "theta", "theta_noise" }; } 39 39 } 40 40 … … 68 68 } 69 69 70 if (noiseRatio != null) { 71 var theta_noise = new List<double>(); 72 var sigma_noise = (double) Math.Sqrt(noiseRatio.Value) * theta.StandardDeviationPop(); 73 theta_noise.AddRange(theta.Select(md => md + NormalDistributedRandomPolar.NextDouble(rand, 0, sigma_noise))); 74 data.Remove(theta); 75 data.Add(theta_noise); 76 } 70 var targetNoise = GetNoisyTarget(theta, rand); 71 if (targetNoise != null) data.Add(targetNoise); 77 72 78 73 return data;
Note: See TracChangeset
for help on using the changeset viewer.