Changeset 17974 for trunk/HeuristicLab.Problems.Instances.DataAnalysis
- Timestamp:
- 05/04/21 14:32:15 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman1.cs
r17973 r17974 60 60 61 61 for (var i = 0; i < theta.Count; i++) { 62 var res = Math.Exp(Math.Pow(- i, 2) / 2) / Math.Sqrt(2 * Math.PI);62 var res = Math.Exp(Math.Pow(-theta[i], 2) / 2) / Math.Sqrt(2 * Math.PI); 63 63 f.Add(res); 64 64 }
Note: See TracChangeset
for help on using the changeset viewer.