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.
							
						std.complex.Complex/complex  - multiple declarations
				Function complex
Helper function that returns a complex number with the specified real and imaginary parts.
						
				auto auto complex(R)
				(
				
				  const R re
				
				) pure nothrow @nogc @safe
				
				if (is(R : double));
				
				
				auto auto complex(R, I)
				(
				
				  const R re,
				
				  const I im
				
				) pure nothrow @nogc @safe
				
				if (is(R : double) && is(I : double));
						
					
				Parameters
| Name | Description | 
|---|---|
| R | (template parameter) type of real part of complex number | 
| I | (template parameter) type of imaginary part of complex number | 
| re | real part of complex number to be constructed | 
| im | (optional) imaginary part of complex number, 0 if omitted. | 
Returns
Complex instance with real and imaginary parts set
        to the values provided as input.  If neither re nor
        im are floating-point numbers, the return type will
        be Complex!double.  Otherwise, the return type is
        deduced using CommonType!(R, I).
Example
auto a = complex(1.0);
static assert(is(typeof(a) == Complex!double));
writeln(aStruct Complex
A complex number parametrised by a type T, which must be either
    float, double or real.
						
				struct Complex(T)
				
				  
				
				if (isFloatingPoint!T);
						
					
				Constructors
| Name | Description | 
|---|---|
| this | Construct a complex number with the specified real and imaginary parts. In the case where a single argument is passed that is not complex, the imaginary part of the result will be zero. | 
Fields
| Name | Type | Description | 
|---|---|---|
| im | T | The imaginary part of the number. | 
| re | T | The real part of the number. | 
Methods
| Name | Description | 
|---|---|
| toString | Converts the complex number to a string representation. | 
Authors
Lars Tandle Kyllingstad, Don Clugston
License
					Copyright © 1999-2022 by the D Language Foundation | Page generated by ddox.