1 write to _x
Microsoft.ML.TimeSeries (1)
STL\LocalRegression.cs (1)
46
_x
= x;
15 references to _x
Microsoft.ML.TimeSeries (15)
STL\LocalRegression.cs (15)
48
_length =
_x
.Count;
53
double selfValue =
_x
[SelfIndex];
71
double startV =
_x
[startIndex];
72
double endV =
_x
[endIndex];
96
double leftRange = selfValue -
_x
[startIndex];
97
double rightRange =
_x
[endIndex] - selfValue;
104
NeighborsX[i - StartIndex] =
_x
[i];
106
Weights[i - StartIndex] = WeightMethod.Tricube((
_x
[i] - selfValue) / range);
113
NeighborsX[i - StartIndex] =
_x
[i];
127
double leftRange = selfValue -
_x
[StartIndex];
128
double rightRange =
_x
[EndIndex] - selfValue;
143
NeighborsX[i - StartIndex] =
_x
[i];
145
Weights[i - StartIndex] = WeightMethod.Tricube((
_x
[i] - selfValue) / range);
152
NeighborsX[i - StartIndex] =
_x
[i];
238
return _model.Y(
_x
[SelfIndex]);