View source code
Display the source code in std/complex.d from which thispage was generated on github.
Report a bug
If you spot a problem with this page, click here to create aBugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.Requires a signed-in GitHub account. This works well for small changes.If you'd like to make larger changes you may want to consider usinglocal clone.
Function std.complex.atan
Inverse trigonometric functions on complex numbers.
Parameters
| Name | Description |
|---|---|
| z | A complex number. |
Returns
The arcsine, arccosine and arctangent of z, respectively.
Example
import std .math .operations : isClose;
import std .math .constants : PI;
writeln(asin(complex(0.0))); // 0.0
assert(isClose(asin(complex(0.5L)), PI / 6));
Example
import std .math .operations : isClose;
import std .math .constants : PI;
import std .math .trigonometry : std_math_acos = acos;
writeln(acos(complex(0.0))); // std_math_acos(0.0)
assert(isClose(acos(complex(0.5L)), PI / 3));
Example
import std .math .operations : isClose;
import std .math .constants : PI;
writeln(atan(complex(0.0))); // 0.0
assert(isClose(atan(sqrt(complex(3.0L))), PI / 3));
assert(isClose(atan(sqrt(complex(3.0f))), float(PI) / 3));
Authors
Lars Tandle Kyllingstad, Don Clugston
License
Copyright © 1999-2025 by the D Language Foundation | Page generated by ddox.