1 write to _smoothedSubseries
Microsoft.ML.TimeSeries (1)
STL\InnerStl.cs (1)
137Array.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)); 218for (int i = 0; i < _smoothedSubseries[0].Count; i++) 220for (int j = 0; j < _smoothedSubseries.Length; j++) 222if (_smoothedSubseries[j].Count <= i) 224if (_smoothedSubseries[j][i].Equals(double.NaN)) 228c[index] = (_smoothedSubseries[j][i]);