Complex.Add() Type: INSTANCE FUNCTION Purpose: Add two complex numbers. The parameter is a second complex number. Usage: Sum = Complex1.Add(Complex2) Complex1 COMPLEX First of the two complex numbers to add.… read more →
Complex.Con() Type: INSTANCE FUNCTION Purpose: Returns the complex conjugate of a complex number. Usage: Conjugate = Complex.Con() Conjugate COMPLEX Complex conjugate of the complex number Complex. Related Topics
Complex.Cos() Type: INSTANCE FUNCTION Purpose: Calculates the cosine of a complex number. Usage: Result = Complex.Cos() Complex COMPLEX Existing instance of a complex number. Result COMPLEX Cosine of complex… read more →
ClassIndex() Type: REGULAR FUNCTION Purpose: Returns a unique numerical code identifying the class or type of a variable. The primary use is in checking that two items are of the… read more →
ClassName() Type: REGULAR FUNCTION Purpose: Returns a string containing the name of a variable’s class or datatype. Usage: String = ClassName(Item) String STRING The name of the class for… read more →
ClassNew() Type: REGULAR FUNCTION Purpose: Dynamically creates a class from a class name and super class. These classes are created on the fly during the execution of a script. Usage:… read more →
COMPLEX Type: CLASS Purpose: Allows the storage and manipulation of the real and imaginary components of complex numbers. Related Topics
Char() Type: REGULAR FUNCTION Purpose: Returns a character given a valid ASCII number. Usage: Charact = Char(AsciiNumb) AsciiNumb INDEX ASCII number of the first character in String. Charact… read more →
ClassAddCSel() Type: REGULAR FUNCTION Purpose: Add a function or variable name to a class. This function is designed mainly for dynamically created classes but can be used (carefully) to modify… read more →
ClassAddISel() Type: REGULAR FUNCTION Purpose: Add an instance selector, e.g., an instance name, to a class. This function is designed mainly for dynamically created classes, but can be used (carefully)… read more →