Changeset 12792 for trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/OnlineCalculators/AutoCorrelationCalculator.cs
- Timestamp:
- 07/21/15 16:00:20 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/OnlineCalculators/AutoCorrelationCalculator.cs
r12012 r12792 31 31 } 32 32 33 double[] correlations = new double[values.Length];34 alglib.corr .corrr1dcircular(values, values.Length, values, values.Length, refcorrelations);33 double[] correlations; 34 alglib.corrr1dcircular(values, values.Length, values, values.Length, out correlations); 35 35 return correlations; 36 36 }
Note: See TracChangeset
for help on using the changeset viewer.