Complex.Show() Type: INSTANCE FUNCTION Purpose: Outputs the value of a complex number to the STDOUT window. Usage: Complex.Show(Text) Complex COMPLEX Existing instance of a Complex Number. Text STRING Description… read more →
Complex.Sin() Type: INSTANCE FUNCTION Purpose: Calculates the sine of a complex number. Usage: Result = Complex.Sin() Complex COMPLEX Existing instance of a complex number. Result COMPLEX Sine of complex… read more →
Complex.SetImag() Type: INSTANCE FUNCTION Purpose: Sets the imaginary component of a complex number. Usage: Complex.SetImag(Number) Number REAL New real component of Complex. Related Topics
Complex.Phi() Type: INSTANCE FUNCTION Purpose: Calculates the phase of a complex number in radians. Usage: Result = Complex.Phi() Complex COMPLEX Existing instance of a complex number. Result COMPLEX Phase… read more →
Complex.Mag() Type: INSTANCE FUNCTION Purpose: Calculates the magnitude of a complex number. Usage: Result = Complex.Mag() Complex COMPLEX Existing instance of a complex number. Result COMPLEX Magnitude of complex… read more →
Complex.Mul() Type: INSTANCE FUNCTION Purpose: Multiplies two complex numbers. The parameter is a second complex number. Usage: Product = Complex1.Mul(Complex2) Complex1 COMPLEX First of the two complex numbers to multiply.… read more →
Complex.New() Type: CLASS FUNCTION Purpose: Create a new instance of COMPLEX.function Usage: Number = COMPLEX.New(Real, Imag) Real REAL Real component of the complex number. Imag REAL Imaginary component of… read more →
Complex.Div() Type: INSTANCE FUNCTION Purpose: Divides two complex numbers. The parameter is a second complex number. Complex2 is divided into Complex1. Usage: Quotient = Complex1.Div(Complex2) Complex1 COMPLEX First of the… read more →
Complex.Imag() Type: INSTANCE FUNCTION Purpose: Returns the imaginary component of a complex number. Usage: ImagComp = Complex.Imag() ImagComp REAL Imaginary component of complex number Complex. Related Topics
Complex.isEqual() Type: INSTANCE FUNCTION Purpose: Compares the values of two complex numbers to see if they are equal to each other. The parameter is a second complex number. Usage: Result =… read more →