- Timestamp:
- 12/30/18 09:16:51 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Analysis/3.3/Statistics/Fitting
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Analysis/3.3/Statistics/Fitting/LinearLeastSquaresFitting.cs
r16453 r16472 32 32 public void Calculate(double[] y, double[] x, out double slope, out double intercept) { 33 33 if (y.Count() != x.Count()) { 34 throw new ArgumentException("The leng htof x and y needs do be equal. ");34 throw new ArgumentException("The length of x and y needs do be equal. "); 35 35 } 36 36 -
branches/2520_PersistenceReintegration/HeuristicLab.Analysis/3.3/Statistics/Fitting/LogFitting.cs
r16453 r16472 41 41 public void Calculate(double[] y, double[] x, out double p0, out double p1) { 42 42 if (y.Count() != x.Count()) { 43 throw new ArgumentException("The leng htof x and y needs do be equal. ");43 throw new ArgumentException("The length of x and y needs do be equal. "); 44 44 } 45 45
Note: See TracChangeset
for help on using the changeset viewer.