Changeset 17659 for branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman3.cs
- Timestamp:
- 07/08/20 16:37:48 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman3.cs
r17647 r17659 65 65 66 66 for (var i = 0; i < sigma.Count; i++) { 67 var res = Math.Exp(- (Math.Pow(theta[i] - theta1[i], 2) / sigma[i]) / 2) / (Math.Sqrt(2 * Math.PI) * sigma[i]);67 var res = Math.Exp(-Math.Pow((theta[i] - theta1[i]) / sigma[i], 2) / 2) / (Math.Sqrt(2 * Math.PI) * sigma[i]); 68 68 f.Add(res); 69 69 }
Note: See TracChangeset
for help on using the changeset viewer.