10 references to Imaginary
Microsoft.ML.TimeSeries (5)
PolynomialUtils.cs (4)
293if (Double.IsNaN(roots[i].Real) || Double.IsNaN(roots[i].Imaginary)) 298else if (roots[i].Imaginary == 0) // Real roots 313(decimal) (roots[i].Real*roots[i].Real + roots[i].Imaginary*roots[i].Imaginary),
SeasonalityDetector.cs (1)
101periodogram.Select(t => t.Imaginary).ToArray(),
System.Runtime.Numerics (5)
System\Numerics\BigInteger.cs (1)
2126if (value.Imaginary != 0)
System\Numerics\Complex.cs (4)
397Asin_Internal(Math.Abs(value.Real), Math.Abs(value.Imaginary), out b, out bPrime, out v); 410if (value.Imaginary < 0.0) v = -v; 430Asin_Internal(Math.Abs(value.Real), Math.Abs(value.Imaginary), out b, out bPrime, out v); 443if (value.Imaginary > 0.0) v = -v;