16 references to Phase
Microsoft.ML.TimeSeries (16)
AdaptiveSingularSpectrumSequenceModeler.cs (16)
888
if (roots[i].Magnitude > 1 && (Math.Abs(roots[i].
Phase
) <= eps || Math.Abs(Math.Abs(roots[i].
Phase
) - Math.PI) <= eps))
895
if (roots[i].
Phase
!= 0)
897
if (roots[i].Magnitude >= 1 && 2 * Math.PI / Math.Abs(roots[i].
Phase
) > _windowSize)
924
sortedComponents.Add(new SignalComponent(roots[i].
Phase
, i));
994
if (Math.Abs(roots[ind].
Phase
) <= eps)
1003
if (Math.Abs(roots[i].
Phase
) <= eps && 0.9 <= roots[i].Magnitude && i != ind1)
1023
roots[ind] = Complex.FromPolarCoordinates(0.99, roots[ind].
Phase
);
1030
if (roots[i].Magnitude > 1 && Math.Abs(roots[i].
Phase
) <= eps)
1051
if ((highFrequenceyBoundry < roots[i].
Phase
&& roots[i].
Phase
< Math.PI - eps) ||
1052
(-Math.PI + eps < roots[i].
Phase
&& roots[i].
Phase
< -highFrequenceyBoundry))
1053
roots[i] = Complex.FromPolarCoordinates(smallTrendMagnitude, roots[i].
Phase
);
1055
roots[i] = Complex.FromPolarCoordinates(maxTrendMagnitude, roots[i].
Phase
);
1062
var phase = roots[i].
Phase
;