7 references to Log
System.Numerics (7)
System\Numerics\Complex.cs (7)
303
return (-ImaginaryOne) *
Log
(ImaginaryOne * value + Sqrt(One - value * value));
321
return (-ImaginaryOne) *
Log
(value + ImaginaryOne*Sqrt(One - (value * value)));
336
return (ImaginaryOne / Two) * (
Log
(One - ImaginaryOne * value) -
Log
(One + ImaginaryOne * value));
348
return (
Log
(value) /
Log
(baseValue));
353
Complex temp_log =
Log
(value);