Package org.ejml.data
Class Complex_F64
java.lang.Object
org.ejml.data.Complex_F64
public class Complex_F64 extends Object
Represents a complex number using 64bit floating point numbers. A complex number is composed of a real and imaginary components.
-
Field Summary
-
Constructor Summary
Constructors Constructor Description Complex_F64()Complex_F64(double real, double imaginary) -
Method Summary
Modifier and Type Method Description Complex_F64divide(Complex_F64 a)doublegetMagnitude()doublegetMagnitude2()booleanisReal()Complex_F64minus(Complex_F64 a)Complex_F64plus(Complex_F64 a)voidsetTo(double real, double imaginary)voidsetTo(Complex_F64 src)Complex_F64times(Complex_F64 a)StringtoString()
-
Field Details
-
real
public double real -
imaginary
public double imaginary
-
-
Constructor Details
-
Complex_F64
public Complex_F64(double real, double imaginary) -
Complex_F64
public Complex_F64()
-
-
Method Details