Changeset 17805 for trunk/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman40.cs
- Timestamp:
- 12/30/20 09:31:09 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman40.cs
r17678 r17805 28 28 public override string Name { 29 29 get { 30 return string.Format("I.39.10 3/2*pF*V | {0} samples | {1}", trainingSamples,30 return string.Format("I.39.10 3/2*pF*V | {0}", 31 31 noiseRatio == null ? "no noise" : string.Format(System.Globalization.CultureInfo.InvariantCulture, "noise={0:g}",noiseRatio)); 32 32 } … … 68 68 if (noiseRatio != null) { 69 69 var E_n_noise = new List<double>(); 70 var sigma_noise = (double) noiseRatio* E_n.StandardDeviationPop();70 var sigma_noise = (double) Math.Sqrt(noiseRatio.Value) * E_n.StandardDeviationPop(); 71 71 E_n_noise.AddRange(E_n.Select(md => md + NormalDistributedRandom.NextDouble(rand, 0, sigma_noise))); 72 72 data.Remove(E_n);
Note: See TracChangeset
for help on using the changeset viewer.