Changeset 18146 for branches/3136_Structural_GP/HeuristicLab.Algorithms.DataAnalysis/3.4/TimeSeries/AutoregressiveModeling.cs
- Timestamp:
- 12/16/21 14:23:48 (3 years ago)
- Location:
- branches/3136_Structural_GP
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3136_Structural_GP
- Property svn:mergeinfo changed
-
branches/3136_Structural_GP/HeuristicLab.Algorithms.DataAnalysis
- Property svn:mergeinfo changed
/branches/3140_NumberSymbol/HeuristicLab.Algorithms.DataAnalysis (added) merged: 18100,18113-18114,18116 /trunk/HeuristicLab.Algorithms.DataAnalysis (added) merged: 18132
- Property svn:mergeinfo changed
-
branches/3136_Structural_GP/HeuristicLab.Algorithms.DataAnalysis/3.4
- Property svn:mergeinfo changed
/branches/3140_NumberSymbol/HeuristicLab.Algorithms.DataAnalysis/3.4 (added) merged: 18100,18113-18114,18116 /trunk/HeuristicLab.Algorithms.DataAnalysis/3.4 (added) merged: 18132
- Property svn:mergeinfo changed
-
branches/3136_Structural_GP/HeuristicLab.Algorithms.DataAnalysis/3.4/TimeSeries/AutoregressiveModeling.cs
r17180 r18146 104 104 int nRows = inputMatrix.GetLength(0); 105 105 int nFeatures = inputMatrix.GetLength(1) - 1; 106 double[] coefficients = new double[nFeatures + 1]; // last coefficient is for the constant106 double[] coefficients = new double[nFeatures + 1]; // last coefficient is for the offset 107 107 108 108 int retVal = 1;
Note: See TracChangeset
for help on using the changeset viewer.