ComplexInteger64 Operator (FPScript)
Converts an expression into the 64-bit complex integer data type.
Syntax
ComplexInteger64 Expression
The syntax of the ComplexInteger64 operator consists of the following elements:
Element |
Description |
---|---|
Expression |
Any expression. All data types are permitted. |
Remarks
The operator can process scalar values or entire data series and data matrices. If Expression is a data series or a data matrix, then the type conversion takes place on a per-element basis and the result is once again a data series or a data matrix. If a signal, a signal series or a space curve is converted, only the Y component is examined. The result then contains the unchanged X component and possibly the Z component of Expression. If Expression is a list, then the operation is executed for each item in the list and the result is also a list.
In the conversion, the fractional digits in floating point values are truncated. The Boolean value TRUE results in the value (1L, 0L) and FALSE results in the value (0L, 0L). With real data types, the imaginary part is equated to zero. Strings are interpreted as a value or quantity first and then converted like numerical data. Here the decimal and list separators specified in FlexPro Options are used. The Empty type and a void floating point value result in (0L, 0L).
If Expression is a quantity, then it has to have the SI dimension 1 and it will be transformed to the unit 1 before conversion.
Available in
FlexPro View, Basic, Professional, Developer Suite
Examples
ComplexInteger64 2.6 |
Returns (2, 0). |
ComplexInteger64 "(1, 3)" |
Returns (1, 3). |
See Also
ComplexFloatingPoint32 Operator