Changeset 16119
- Timestamp:
- 08/30/18 12:45:07 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2457_ExpertSystem/HeuristicLab.Analysis.FitnessLandscape/3.3/ProblemCharacteristicAnalysis/CurveAnalysis.cs
r16096 r16119 28 28 public static CurveAnalysisResult GetCharacteristics(List<List<Tuple<T, double>>> trajectories, Func<T, T, double> distFunc) { 29 29 trajectories = trajectories.Where(x => x.Count > 5).ToList(); 30 if (trajectories.Count == 0) return new CurveAnalysisResult(0, 0, 0, new[] { 0.0, 0.0, 0.0 }, new[] { 0.0, 0.0, 0.0 }, new[] { 0.0, 0.0, 0.0 }); 31 30 32 var symbols = GetSymbols(trajectories); 31 33 var f1 = trajectories.Select(path => ApproximateDerivative(path, distFunc).ToList()).ToList();
Note: See TracChangeset
for help on using the changeset viewer.