View source code
Display the source code in std/complex.d from which this page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a Bugzilla 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 using local clone.

Function std.complex.fromPolar

Constructs a complex number given its absolute value and argument.

Complex!(CommonType!(T,U)) fromPolar(T, U) (
  const T modulus,
  const U argument
) pure nothrow @nogc @safe;

Parameters

NameDescription
modulus The modulus
argument The argument

Returns

The complex number with the given modulus and argument.

Example

import core.math;
import std.math.operations : isClose;
import std.math.algebraic : sqrt;
import std.math.constants : PI_4;
auto z = fromPolar(sqrt(2.0L), PI_4);
assert(isClose(z.re, 1.0L));
assert(isClose(z.im, 1.0L));

Authors

Lars Tandle Kyllingstad, Don Clugston

License

Boost License 1.0