Class Complex
- java.lang.Object
-
- org.hipparchus.complex.Complex
-
- All Implemented Interfaces:
Serializable,FieldElement<Complex>
public class Complex extends Object implements FieldElement<Complex>, Serializable
Representation of a Complex number, i.e. a number which has both a real and imaginary part.Implementations of arithmetic operations handle
NaNand infinite values according to the rules forDouble, i.e.equals(java.lang.Object)is an equivalence relation for all instances that have aNaNin either real or imaginary part, e.g. the following are considered equal:1 + NaNiNaN + iNaN + NaNi
Note that this contradicts the IEEE-754 standard for floating point numbers (according to which the test
x == xmust fail ifxisNaN). The methodequals for primitive doubleinPrecisionconforms with IEEE-754 while this class conforms with the standard behavior for Java object types.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static ComplexIThe square root of -1.static ComplexINFA complex number representing "+INF + INFi"static ComplexNaNA complex number representing "NaN + NaNi"static ComplexONEA complex number representing "1.0 + 0.0i"static ComplexZEROA complex number representing "0.0 + 0.0i"
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description doubleabs()Return the absolute value of this complex number.Complexacos()Compute the inverse cosine of this complex number.Complexadd(double addend)Returns aComplexwhose value is(this + addend), withaddendinterpreted as a real number.Complexadd(Complex addend)Returns aComplexwhose value is(this + addend).Complexasin()Compute the inverse sine of this complex number.Complexatan()Compute the inverse tangent of this complex number.Complexconjugate()Returns the conjugate of this complex number.Complexcos()Compute the cosine of this complex number.Complexcosh()Compute the hyperbolic cosine of this complex number.protected ComplexcreateComplex(double realPart, double imaginaryPart)Create a complex number given the real and imaginary parts.Complexdivide(double divisor)Returns aComplexwhose value is(this / divisor), withdivisorinterpreted as a real number.Complexdivide(Complex divisor)Returns aComplexwhose value is(this / divisor).booleanequals(Object other)Test for equality with another object.static booleanequals(Complex x, Complex y)Returnstrueiff the values are equal as defined byequals(x, y, 1).static booleanequals(Complex x, Complex y, double eps)Returnstrueif, both for the real part and for the imaginary part, there is no double value strictly between the arguments or the difference between them is within the range of allowed error (inclusive).static booleanequals(Complex x, Complex y, int maxUlps)Test for the floating-point equality between Complex objects.static booleanequalsWithRelativeTolerance(Complex x, Complex y, double eps)Returnstrueif, both for the real part and for the imaginary part, there is no double value strictly between the arguments or the relative difference between them is smaller or equal to the given tolerance.Complexexp()Compute the exponential function of this complex number.doublegetArgument()Compute the argument of this complex number.ComplexFieldgetField()Get theFieldto which the instance belongs.doublegetImaginary()Access the imaginary part.doublegetReal()Access the real part.inthashCode()Get a hashCode for the complex number.booleanisInfinite()Checks whether either the real or imaginary part of this complex number takes an infinite value (eitherDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITY) and neither part isNaN.booleanisNaN()Checks whether either or both parts of this complex number isNaN.Complexlog()Compute the natural logarithm of this complex number.Complexmultiply(double factor)Returns aComplexwhose value isthis * factor, withfactorinterpreted as a real number.Complexmultiply(int factor)Returns aComplexwhose value isthis * factor, withfactorinterpreted as a integer number.Complexmultiply(Complex factor)Returns aComplexwhose value isthis * factor.Complexnegate()Returns aComplexwhose value is(-this).List<Complex>nthRoot(int n)Computes the n-th roots of this complex number.Complexpow(double x)Returns of value of this complex number raised to the power ofx.Complexpow(Complex x)Returns of value of this complex number raised to the power ofx.protected ObjectreadResolve()Resolve the transient fields in a deserialized Complex Object.Complexreciprocal()Returns the multiplicative inverse ofthiselement.Complexsin()Compute the sine of this complex number.Complexsinh()Compute the hyperbolic sine of this complex number.Complexsqrt()Compute the square root of this complex number.Complexsqrt1z()Compute the square root of1 - this2for this complex number.Complexsubtract(double subtrahend)Returns aComplexwhose value is(this - subtrahend).Complexsubtract(Complex subtrahend)Returns aComplexwhose value is(this - subtrahend).Complextan()Compute the tangent of this complex number.Complextanh()Compute the hyperbolic tangent of this complex number.StringtoString()static ComplexvalueOf(double realPart)Create a complex number given only the real part.static ComplexvalueOf(double realPart, double imaginaryPart)Create a complex number given the real and imaginary parts.
-
-
-
Field Detail
-
I
public static final Complex I
The square root of -1. A number representing "0.0 + 1.0i"
-
NaN
public static final Complex NaN
A complex number representing "NaN + NaNi"
-
INF
public static final Complex INF
A complex number representing "+INF + INFi"
-
ONE
public static final Complex ONE
A complex number representing "1.0 + 0.0i"
-
ZERO
public static final Complex ZERO
A complex number representing "0.0 + 0.0i"
-
-
Constructor Detail
-
Complex
public Complex(double real)
Create a complex number given only the real part.- Parameters:
real- Real part.
-
Complex
public Complex(double real, double imaginary)Create a complex number given the real and imaginary parts.- Parameters:
real- Real part.imaginary- Imaginary part.
-
-
Method Detail
-
abs
public double abs()
Return the absolute value of this complex number. ReturnsNaNif either real or imaginary part isNaNandDouble.POSITIVE_INFINITYif neither part isNaN, but at least one part is infinite.- Returns:
- the absolute value.
-
add
public Complex add(Complex addend) throws NullArgumentException
Returns aComplexwhose value is(this + addend). Uses the definitional formula
If either(a + bi) + (c + di) = (a+c) + (b+d)ithisoraddendhas aNaNvalue in either part,NaNis returned; otherwiseInfiniteandNaNvalues are returned in the parts of the result according to the rules forDoublearithmetic.- Specified by:
addin interfaceFieldElement<Complex>- Parameters:
addend- Value to be added to thisComplex.- Returns:
this + addend.- Throws:
NullArgumentException- ifaddendisnull.
-
add
public Complex add(double addend)
Returns aComplexwhose value is(this + addend), withaddendinterpreted as a real number.- Parameters:
addend- Value to be added to thisComplex.- Returns:
this + addend.- See Also:
add(Complex)
-
conjugate
public Complex conjugate()
Returns the conjugate of this complex number. The conjugate ofa + biisa - bi.NaNis returned if either the real or imaginary part of this Complex number equalsDouble.NaN.If the imaginary part is infinite, and the real part is not
NaN, the returned value has infinite imaginary part of the opposite sign, e.g. the conjugate of1 + POSITIVE_INFINITY iis1 - NEGATIVE_INFINITY i.- Returns:
- the conjugate of this Complex object.
-
divide
public Complex divide(Complex divisor) throws NullArgumentException
Returns aComplexwhose value is(this / divisor). Implements the definitional formula
but uses prescaling of operands to limit the effects of overflows and underflows in the computation.a + bi ac + bd + (bc - ad)i ----------- = ------------------------- c + di c2 + d2InfiniteandNaNvalues are handled according to the following rules, applied in the order presented:- If either
thisordivisorhas aNaNvalue in either part,NaNis returned. - If
divisorequalsZERO,NaNis returned. - If
thisanddivisorare both infinite,NaNis returned. - If
thisis finite (i.e., has noInfiniteorNaNparts) anddivisoris infinite (one or both parts infinite),ZEROis returned. - If
thisis infinite anddivisoris finite,NaNvalues are returned in the parts of the result if theDoublerules applied to the definitional formula forceNaNresults.
- Specified by:
dividein interfaceFieldElement<Complex>- Parameters:
divisor- Value by which thisComplexis to be divided.- Returns:
this / divisor.- Throws:
NullArgumentException- ifdivisorisnull.
- If either
-
divide
public Complex divide(double divisor)
Returns aComplexwhose value is(this / divisor), withdivisorinterpreted as a real number.- Parameters:
divisor- Value by which thisComplexis to be divided.- Returns:
this / divisor.- See Also:
divide(Complex)
-
reciprocal
public Complex reciprocal()
Returns the multiplicative inverse ofthiselement.- Specified by:
reciprocalin interfaceFieldElement<Complex>- Returns:
- the inverse of
this.
-
equals
public boolean equals(Object other)
Test for equality with another object. If both the real and imaginary parts of two complex numbers are exactly the same, and neither isDouble.NaN, the two Complex objects are considered to be equal. The behavior is the same as for JDK'sDouble:- All
NaNvalues are considered to be equal, i.e, if either (or both) real and imaginary parts of the complex number are equal toDouble.NaN, the complex number is equal toNaN. - Instances constructed with different representations of zero (i.e. either "0" or "-0") are not considered to be equal.
- All
-
equals
public static boolean equals(Complex x, Complex y, int maxUlps)
Test for the floating-point equality between Complex objects. It returnstrueif both arguments are equal or within the range of allowed error (inclusive).- Parameters:
x- First value (cannot benull).y- Second value (cannot benull).maxUlps-(maxUlps - 1)is the number of floating point values between the real (resp. imaginary) parts ofxandy.- Returns:
trueif there are fewer thanmaxUlpsfloating point values between the real (resp. imaginary) parts ofxandy.- See Also:
Precision.equals(double,double,int)
-
equals
public static boolean equals(Complex x, Complex y)
Returnstrueiff the values are equal as defined byequals(x, y, 1).- Parameters:
x- First value (cannot benull).y- Second value (cannot benull).- Returns:
trueif the values are equal.
-
equals
public static boolean equals(Complex x, Complex y, double eps)
Returnstrueif, both for the real part and for the imaginary part, there is no double value strictly between the arguments or the difference between them is within the range of allowed error (inclusive). Returnsfalseif either of the arguments is NaN.- Parameters:
x- First value (cannot benull).y- Second value (cannot benull).eps- Amount of allowed absolute error.- Returns:
trueif the values are two adjacent floating point numbers or they are within range of each other.- See Also:
Precision.equals(double,double,double)
-
equalsWithRelativeTolerance
public static boolean equalsWithRelativeTolerance(Complex x, Complex y, double eps)
Returnstrueif, both for the real part and for the imaginary part, there is no double value strictly between the arguments or the relative difference between them is smaller or equal to the given tolerance. Returnsfalseif either of the arguments is NaN.- Parameters:
x- First value (cannot benull).y- Second value (cannot benull).eps- Amount of allowed relative error.- Returns:
trueif the values are two adjacent floating point numbers or they are within range of each other.- See Also:
Precision.equalsWithRelativeTolerance(double,double,double)
-
hashCode
public int hashCode()
Get a hashCode for the complex number. AnyDouble.NaNvalue in real or imaginary part produces the same hash code7.
-
getImaginary
public double getImaginary()
Access the imaginary part.- Returns:
- the imaginary part.
-
getReal
public double getReal()
Access the real part.- Returns:
- the real part.
-
isNaN
public boolean isNaN()
Checks whether either or both parts of this complex number isNaN.- Returns:
- true if either or both parts of this complex number is
NaN; false otherwise.
-
isInfinite
public boolean isInfinite()
Checks whether either the real or imaginary part of this complex number takes an infinite value (eitherDouble.POSITIVE_INFINITYorDouble.NEGATIVE_INFINITY) and neither part isNaN.- Returns:
- true if one or both parts of this complex number are infinite
and neither part is
NaN.
-
multiply
public Complex multiply(Complex factor) throws NullArgumentException
Returns aComplexwhose value isthis * factor. Implements preliminary checks forNaNand infinity followed by the definitional formula:
Returns(a + bi)(c + di) = (ac - bd) + (ad + bc)iNaNif eitherthisorfactorhas one or moreNaNparts.Returns
INFif neitherthisnorfactorhas one or moreNaNparts and if eitherthisorfactorhas one or more infinite parts (same result is returned regardless of the sign of the components).Returns finite values in components of the result per the definitional formula in all remaining cases.
- Specified by:
multiplyin interfaceFieldElement<Complex>- Parameters:
factor- value to be multiplied by thisComplex.- Returns:
this * factor.- Throws:
NullArgumentException- iffactorisnull.
-
multiply
public Complex multiply(int factor)
Returns aComplexwhose value isthis * factor, withfactorinterpreted as a integer number.- Specified by:
multiplyin interfaceFieldElement<Complex>- Parameters:
factor- value to be multiplied by thisComplex.- Returns:
this * factor.- See Also:
multiply(Complex)
-
multiply
public Complex multiply(double factor)
Returns aComplexwhose value isthis * factor, withfactorinterpreted as a real number.- Parameters:
factor- value to be multiplied by thisComplex.- Returns:
this * factor.- See Also:
multiply(Complex)
-
negate
public Complex negate()
Returns aComplexwhose value is(-this). ReturnsNaNif either real or imaginary part of this Complex number isDouble.NaN.- Specified by:
negatein interfaceFieldElement<Complex>- Returns:
-this.
-
subtract
public Complex subtract(Complex subtrahend) throws NullArgumentException
Returns aComplexwhose value is(this - subtrahend). Uses the definitional formula
If either(a + bi) - (c + di) = (a-c) + (b-d)ithisorsubtrahendhas aNaN]value in either part,NaNis returned; otherwise infinite andNaNvalues are returned in the parts of the result according to the rules forDoublearithmetic.- Specified by:
subtractin interfaceFieldElement<Complex>- Parameters:
subtrahend- value to be subtracted from thisComplex.- Returns:
this - subtrahend.- Throws:
NullArgumentException- ifsubtrahendisnull.
-
subtract
public Complex subtract(double subtrahend)
Returns aComplexwhose value is(this - subtrahend).- Parameters:
subtrahend- value to be subtracted from thisComplex.- Returns:
this - subtrahend.- See Also:
subtract(Complex)
-
acos
public Complex acos()
Compute the inverse cosine of this complex number. Implements the formula:
Returnsacos(z) = -i (log(z + i (sqrt(1 - z<sup>2</sup>))))NaNif either real or imaginary part of the input argument isNaNor infinite.- Returns:
- the inverse cosine of this complex number.
-
asin
public Complex asin()
Compute the inverse sine of this complex number. Implements the formula:asin(z) = -i (log(sqrt(1 - z<sup>2</sup>) + iz))Returns
NaNif either real or imaginary part of the input argument isNaNor infinite.- Returns:
- the inverse sine of this complex number.
-
atan
public Complex atan()
Compute the inverse tangent of this complex number. Implements the formula:atan(z) = (i/2) log((i + z)/(i - z))Returns
NaNif either real or imaginary part of the input argument isNaNor infinite.- Returns:
- the inverse tangent of this complex number
-
cos
public Complex cos()
Compute the cosine of this complex number. Implements the formula:cos(a + bi) = cos(a)cosh(b) - sin(a)sinh(b)iwhere the (real) functions on the right-hand side are
FastMath.sin(double),FastMath.cos(double),FastMath.cosh(double)andFastMath.sinh(double).Returns
NaNif either real or imaginary part of the input argument isNaN.Infinite values in real or imaginary parts of the input may result in infinite or NaN values returned in parts of the result.
Examples:
cos(1 ± INFINITY i) = 1 ∓ INFINITY i cos(±INFINITY + i) = NaN + NaN i cos(±INFINITY ± INFINITY i) = NaN + NaN i- Returns:
- the cosine of this complex number.
-
cosh
public Complex cosh()
Compute the hyperbolic cosine of this complex number. Implements the formula:
where the (real) functions on the right-hand side arecosh(a + bi) = cosh(a)cos(b) + sinh(a)sin(b)iFastMath.sin(double),FastMath.cos(double),FastMath.cosh(double)andFastMath.sinh(double).Returns
Infinite values in real or imaginary parts of the input may result in infinite or NaN values returned in parts of the result.NaNif either real or imaginary part of the input argument isNaN.Examples:
cosh(1 ± INFINITY i) = NaN + NaN i cosh(±INFINITY + i) = INFINITY ± INFINITY i cosh(±INFINITY ± INFINITY i) = NaN + NaN i- Returns:
- the hyperbolic cosine of this complex number.
-
exp
public Complex exp()
Compute the exponential function of this complex number. Implements the formula:
where the (real) functions on the right-hand side areexp(a + bi) = exp(a)cos(b) + exp(a)sin(b)iFastMath.exp(double),FastMath.cos(double), andFastMath.sin(double).Returns
Infinite values in real or imaginary parts of the input may result in infinite or NaN values returned in parts of the result.NaNif either real or imaginary part of the input argument isNaN.Examples:
exp(1 ± INFINITY i) = NaN + NaN i exp(INFINITY + i) = INFINITY + INFINITY i exp(-INFINITY + i) = 0 + 0i exp(±INFINITY ± INFINITY i) = NaN + NaN i- Returns:
ethis.
-
log
public Complex log()
Compute the natural logarithm of this complex number. Implements the formula:
where ln on the right hand side islog(a + bi) = ln(|a + bi|) + arg(a + bi)iFastMath.log(double),|a + bi|is the modulus,abs(), andarg(a + bi) =FastMath.atan2(double, double)(b, a).Returns
Infinite (or critical) values in real or imaginary parts of the input may result in infinite or NaN values returned in parts of the result.NaNif either real or imaginary part of the input argument isNaN.Examples:
log(1 ± INFINITY i) = INFINITY ± (π/2)i log(INFINITY + i) = INFINITY + 0i log(-INFINITY + i) = INFINITY + πi log(INFINITY ± INFINITY i) = INFINITY ± (π/4)i log(-INFINITY ± INFINITY i) = INFINITY ± (3π/4)i log(0 + 0i) = -INFINITY + 0i- Returns:
- the value
ln this, the natural logarithm ofthis.
-
pow
public Complex pow(Complex x) throws NullArgumentException
Returns of value of this complex number raised to the power ofx. Implements the formula:
whereyx = exp(x·log(y))expandlogareexp()andlog(), respectively.Returns
NaNif either real or imaginary part of the input argument isNaNor infinite, or ifyequalsZERO.- Parameters:
x- exponent to which thisComplexis to be raised.- Returns:
thisx.- Throws:
NullArgumentException- if x isnull.
-
pow
public Complex pow(double x)
Returns of value of this complex number raised to the power ofx.- Parameters:
x- exponent to which thisComplexis to be raised.- Returns:
thisx.- See Also:
pow(Complex)
-
sin
public Complex sin()
Compute the sine of this complex number. Implements the formula:
where the (real) functions on the right-hand side aresin(a + bi) = sin(a)cosh(b) - cos(a)sinh(b)iFastMath.sin(double),FastMath.cos(double),FastMath.cosh(double)andFastMath.sinh(double).Returns
NaNif either real or imaginary part of the input argument isNaN.Infinite values in real or imaginary parts of the input may result in infinite or
NaNvalues returned in parts of the result.Examples:
sin(1 ± INFINITY i) = 1 ± INFINITY i sin(±INFINITY + i) = NaN + NaN i sin(±INFINITY ± INFINITY i) = NaN + NaN i- Returns:
- the sine of this complex number.
-
sinh
public Complex sinh()
Compute the hyperbolic sine of this complex number. Implements the formula:
where the (real) functions on the right-hand side aresinh(a + bi) = sinh(a)cos(b)) + cosh(a)sin(b)iFastMath.sin(double),FastMath.cos(double),FastMath.cosh(double)andFastMath.sinh(double).Returns
NaNif either real or imaginary part of the input argument isNaN.Infinite values in real or imaginary parts of the input may result in infinite or NaN values returned in parts of the result.
Examples:
sinh(1 ± INFINITY i) = NaN + NaN i sinh(±INFINITY + i) = ± INFINITY + INFINITY i sinh(±INFINITY ± INFINITY i) = NaN + NaN i- Returns:
- the hyperbolic sine of
this.
-
sqrt
public Complex sqrt()
Compute the square root of this complex number. Implements the following algorithm to computesqrt(a + bi):- Let
t = sqrt((|a| + |a + bi|) / 2) if
a ≥ 0returnt + (b/2t)ielse return|b|/2t + sign(b)t i
|a| =FastMath.abs(int)(a)|a + bi| =abs()(a + bi)sign(b) =copySign(1d, b)
Returns
Infinite values in real or imaginary parts of the input may result in infinite or NaN values returned in parts of the result.NaNif either real or imaginary part of the input argument isNaN.Examples:
sqrt(1 ± INFINITY i) = INFINITY + NaN i sqrt(INFINITY + i) = INFINITY + 0i sqrt(-INFINITY + i) = 0 + INFINITY i sqrt(INFINITY ± INFINITY i) = INFINITY + NaN i sqrt(-INFINITY ± INFINITY i) = NaN ± INFINITY i- Returns:
- the square root of
this.
- Let
-
sqrt1z
public Complex sqrt1z()
Compute the square root of1 - this2for this complex number. Computes the result directly assqrt(ONE.subtract(z.multiply(z))).Returns
Infinite values in real or imaginary parts of the input may result in infinite or NaN values returned in parts of the result.NaNif either real or imaginary part of the input argument isNaN.- Returns:
- the square root of
1 - this2.
-
tan
public Complex tan()
Compute the tangent of this complex number. Implements the formula:
where the (real) functions on the right-hand side aretan(a + bi) = sin(2a)/(cos(2a)+cosh(2b)) + [sinh(2b)/(cos(2a)+cosh(2b))]iFastMath.sin(double),FastMath.cos(double),FastMath.cosh(double)andFastMath.sinh(double).Returns
Infinite (or critical) values in real or imaginary parts of the input may result in infinite or NaN values returned in parts of the result.NaNif either real or imaginary part of the input argument isNaN.Examples:
tan(a ± INFINITY i) = 0 ± i tan(±INFINITY + bi) = NaN + NaN i tan(±INFINITY ± INFINITY i) = NaN + NaN i tan(±π/2 + 0 i) = ±INFINITY + NaN i- Returns:
- the tangent of
this.
-
tanh
public Complex tanh()
Compute the hyperbolic tangent of this complex number. Implements the formula:
where the (real) functions on the right-hand side aretan(a + bi) = sinh(2a)/(cosh(2a)+cos(2b)) + [sin(2b)/(cosh(2a)+cos(2b))]iFastMath.sin(double),FastMath.cos(double),FastMath.cosh(double)andFastMath.sinh(double).Returns
Infinite values in real or imaginary parts of the input may result in infinite or NaN values returned in parts of the result.NaNif either real or imaginary part of the input argument isNaN.Examples:
tanh(a ± INFINITY i) = NaN + NaN i tanh(±INFINITY + bi) = ±1 + 0 i tanh(±INFINITY ± INFINITY i) = NaN + NaN i tanh(0 + (π/2)i) = NaN + INFINITY i- Returns:
- the hyperbolic tangent of
this.
-
getArgument
public double getArgument()
Compute the argument of this complex number. The argument is the angle phi between the positive real axis and the point representing this number in the complex plane. The value returned is between -PI (not inclusive) and PI (inclusive), with negative values returned for numbers with negative imaginary parts.If either real or imaginary part (or both) is NaN, NaN is returned. Infinite parts are handled as
Math.atan2handles them, essentially treating finite parts as zero in the presence of an infinite coordinate and returning a multiple of pi/4 depending on the signs of the infinite parts. See the javadoc forMath.atan2for full details.- Returns:
- the argument of
this.
-
nthRoot
public List<Complex> nthRoot(int n) throws MathIllegalArgumentException
Computes the n-th roots of this complex number. The nth roots are defined by the formula:
forzk = abs1/n (cos(phi + 2πk/n) + i (sin(phi + 2πk/n))k=0, 1, ..., n-1, whereabsandphiare respectively themodulusandargumentof this complex number.If one or both parts of this complex number is NaN, a list with just one element,
NaNis returned. if neither part is NaN, but at least one part is infinite, the result is a one-element list containingINF.- Parameters:
n- Degree of root.- Returns:
- a List of all
n-th roots ofthis. - Throws:
MathIllegalArgumentException- ifn <= 0.
-
createComplex
protected Complex createComplex(double realPart, double imaginaryPart)
Create a complex number given the real and imaginary parts.- Parameters:
realPart- Real part.imaginaryPart- Imaginary part.- Returns:
- a new complex number instance.
- See Also:
valueOf(double, double)
-
valueOf
public static Complex valueOf(double realPart, double imaginaryPart)
Create a complex number given the real and imaginary parts.- Parameters:
realPart- Real part.imaginaryPart- Imaginary part.- Returns:
- a Complex instance.
-
valueOf
public static Complex valueOf(double realPart)
Create a complex number given only the real part.- Parameters:
realPart- Real part.- Returns:
- a Complex instance.
-
readResolve
protected final Object readResolve()
Resolve the transient fields in a deserialized Complex Object. Subclasses will need to overridecreateComplex(double, double)to deserialize properly.- Returns:
- A Complex instance with all fields resolved.
-
getField
public ComplexField getField()
Get theFieldto which the instance belongs.- Specified by:
getFieldin interfaceFieldElement<Complex>- Returns:
Fieldto which the instance belongs
-
-