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