Property | Type | Description | |
---|---|---|---|
Im | double | ||
Re | double |
Method | Description | |
---|---|---|
Complex ( Complex c ) : System | ||
Complex ( double phase ) : System | ||
Complex ( double real, double imaginary ) : System | ||
Equals ( object obj ) : bool | ||
GetHashCode ( ) : int | ||
Pow ( Complex y ) : void |
Raises to a power
|
|
Set ( double re, double im ) : void |
Set value
|
|
ToString ( ) : string | ||
div ( Complex c ) : void |
In-place divide: this=this/arg
|
|
idiv ( Complex c ) : void |
In-place inverted divide: this = arg/this
|
|
mul ( Complex c ) : void |
In-place multiply
|
|
mul ( double d ) : void |
In-place multiply
|
|
operator ( ) : Complex |
Operator multiply
|
|
operator ( ) : bool |
Operator negative equalitytest
|
public Complex ( double real, double imaginary ) : System | ||
real | double | |
imaginary | double | |
return | System |
public Set ( double re, double im ) : void | ||
re | double | Real |
im | double | Imaginary |
return | void |