1 write to Coefficients
Microsoft.ML.TimeSeries (1)
PolynomialUtils.cs (1)
168
Coefficients
= new List<decimal>(coefficients);
20 references to Coefficients
Microsoft.ML.TimeSeries (20)
PolynomialUtils.cs (20)
155
for (var i = 0; i <
Coefficients
.Count; ++i)
157
var temp = Math.Abs(
Coefficients
[i]);
161
_key =
Coefficients
[i];
179
var len =
Coefficients
.Count;
180
Coefficients
.AddRange(factor.
Coefficients
);
182
PolynomialMultiplication(destination, 0, len, len, factor.
Coefficients
.Count, 0, 1, 1);
184
for (var i = 0; i <
Coefficients
.Count; ++i)
185
Coefficients
[i] = destination[i];
195
Contracts.Assert(uIndex + uLen <= Utils.Size(
Coefficients
));
198
Contracts.Assert(vIndex + vLen <= Utils.Size(
Coefficients
));
205
destination[dstIndex] =
Coefficients
[uIndex] *
Coefficients
[vIndex];
206
destination[dstIndex + 1] =
Coefficients
[uIndex] +
Coefficients
[vIndex];
242
temp = uCoeff *
Coefficients
[i - uLen + vIndex];
245
temp += (vCoeff *
Coefficients
[i - vLen + uIndex]);
248
temp += (
Coefficients
[b - j + uIndex] *
Coefficients
[c + j + vIndex]);
384
var coeff = factors.ElementAt(0).
Coefficients
;