- Timestamp:
- 08/09/12 16:32:44 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Linear/Scaling.cs
r8416 r8463 59 59 return ds.GetDoubleValues(variable, rows).Select(x => (x - min) / (max - min)); 60 60 } 61 62 public void GetScalingParameters(string variable, out double min, out double max) { 63 min = scalingParameters[variable].Item1; 64 max = scalingParameters[variable].Item2; 65 } 61 66 } 62 67 }
Note: See TracChangeset
for help on using the changeset viewer.