1 write to _length
Microsoft.ML.TimeSeries (1)
STL\Loess.cs (1)
60
_length
= xValues.Count;
5 references to _length
Microsoft.ML.TimeSeries (5)
STL\Loess.cs (5)
65
_r = (int)(
_length
* LoessConfiguration.F);
72
if (_r >=
_length
)
73
_r =
_length
- 1;
89
for (int i = 0; i <
_length
; i++)
105
int end =
_length
- 1;