1 write to _smoothedSubseries
Microsoft.ML.TimeSeries (1)
STL\InnerStl.cs (1)
137
Array.Resize(ref
_smoothedSubseries
, np);
9 references to _smoothedSubseries
Microsoft.ML.TimeSeries (9)
STL\InnerStl.cs (9)
190
_smoothedSubseries
[i] = new List<double>();
209
_smoothedSubseries
[i].Add(model.EstimateY(-1.0));
210
_smoothedSubseries
[i].AddRange(model.Y);
213
_smoothedSubseries
[i].Add(model.EstimateY(_cycleSubSeries[i].Count * 1.0));
218
for (int i = 0; i <
_smoothedSubseries
[0].Count; i++)
220
for (int j = 0; j <
_smoothedSubseries
.Length; j++)
222
if (
_smoothedSubseries
[j].Count <= i)
224
if (
_smoothedSubseries
[j][i].Equals(double.NaN))
228
c[index] = (
_smoothedSubseries
[j][i]);