Changeset 17659
- Timestamp:
- 07/08/20 16:37:48 (4 years ago)
- Location:
- branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman26.cs
r17647 r17659 62 62 63 63 for (var i = 0; i < n.Count; i++) { 64 var res = Math. Sinh(n[i] * Math.Sin(theta2[i]));64 var res = Math.Asin(n[i] * Math.Sin(theta2[i])); 65 65 theta1.Add(res); 66 66 } -
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 } -
branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman31.cs
r17647 r17659 64 64 65 65 for (var i = 0; i < lambd.Count; i++) { 66 var res = Math. Sinh(lambd[i] / (n[i] * d[i]));66 var res = Math.Asin(lambd[i] / (n[i] * d[i])); 67 67 theta.Add(res); 68 68 } -
branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman33.cs
r17647 r17659 73 73 74 74 for (var i = 0; i < epsilon.Count; i++) { 75 var res = 1.0 / 2 * epsilon[i] * c[i] * Math.Pow(Ef[i], 2) * (8 * Math.PI +Math.Pow(r[i], 2) / 3) *75 var res = 1.0 / 2 * epsilon[i] * c[i] * Math.Pow(Ef[i], 2) * (8 * Math.PI * Math.Pow(r[i], 2) / 3) * 76 76 (Math.Pow(omega[i], 4) / Math.Pow(Math.Pow(omega[i], 2) - Math.Pow(omega_0[i], 2), 2)); 77 77 Pwr.Add(res); -
branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman44.cs
r17647 r17659 29 29 get { 30 30 return string.Format( 31 "Feynman I.41.16 h /(2*pi)*omega**3/(pi**2*c**2*(exp((h/(2*pi))*omega/(kb*T))-1)) | {0} samples | noise ({1})",31 "Feynman I.41.16 h*omega**3/(pi**2*c**2*(exp((h/(2*pi))*omega/(kb*T))-1)) | {0} samples | noise ({1})", 32 32 trainingSamples, noiseRatio == null ? "no noise" : noiseRatio.ToString()); 33 33 } -
branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman90.cs
r17647 r17659 29 29 get { 30 30 return string.Format( 31 "Feynman III.9.52 (p_d*Ef*t/(h /(2*pi)))*sin((omega-omega_0)*t/2)**2/((omega-omega_0)*t/2)**2 | {0} samples | noise ({1})",31 "Feynman III.9.52 (p_d*Ef*t/(h)*sin((omega-omega_0)*t/2)**2/((omega-omega_0)*t/2)**2 | {0} samples | noise ({1})", 32 32 trainingSamples, noiseRatio == null ? "no noise" : noiseRatio.ToString()); 33 33 } -
branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/FeynmanBonus9.cs
r17649 r17659 29 29 get { 30 30 return string.Format( 31 "Feynman Gravitational wave ratiatedpower -32/5*G**4/c**5*(m1*m2)**2*(m1+m2)/r**5 | {0} samples | noise ({1})",31 "Feynman Radiated gravitational wave power -32/5*G**4/c**5*(m1*m2)**2*(m1+m2)/r**5 | {0} samples | noise ({1})", 32 32 trainingSamples, noiseRatio == null ? "no noise" : noiseRatio.ToString()); 33 33 }
Note: See TracChangeset
for help on using the changeset viewer.