- Timestamp:
- 02/20/18 08:02:17 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/TimeSeries/AutoregressiveModeling.cs
r15783 r15786 96 96 inputMatrix[i, timeOffset] = targetValues[i + problemData.TrainingPartition.Start]; 97 97 98 if (inputMatrix.ContainsNan Inf())98 if (inputMatrix.ContainsNanOrInfinity()) 99 99 throw new NotSupportedException("Linear regression does not support NaN or infinity values in the input dataset."); 100 100
Note: See TracChangeset
for help on using the changeset viewer.