7 references to Log
System.Runtime.Numerics (7)
System\Numerics\Complex.cs (1)
313
Complex<double> result = Complex<double>.
Log
(new Complex<double>(value.m_real, value.m_imaginary));
System\Numerics\Complex.Generic.cs (6)
804
return (ImaginaryOne / two) * (
Log
(One - ImaginaryOne * value) -
Log
(One + ImaginaryOne * value));
944
return
Log
(value) /
Log
(new Complex<T>(baseValue, T.Zero));
949
Complex<T> tempLog =
Log
(value);
1125
return Exp(power *
Log
(value));