FIX

The FIX function returns a result equal to Expression converted to integer type.

Calling Sequence

Result = FIX( Expression [, Offset [, Dim 1 , ..., Dim n ]] )

Arguments

Expression

The expression to be converted to integer.

Offset

Offset from beginning of the Expression data area. Specifying this argument allows fields of data extracted from Expression to be treated as integer data. See the description in Constants and Variables for details.

Dim i

When extracting fields of data, the D i arguments specify the dimensions of the result. The dimension parameters can be any scalar expression. Up to eight dimensions can be specified. If no dimension arguments are given, the result is taken to be scalar.

When converting from a string argument, it is possible that the string does not contain a valid integer and no conversion is possible. The default action in such cases is to print a warning message and return 0. The ON_IOERROR procedure can be used to establish a statement to be jumped to in case of such errors.

Example

Convert the floating-point array [2.2, 3.0, 4.5] to integer type and store the new array in the variable I by entering:

I = FIX([2.2, 3.0, 4.5])

See Also

BYTE , COMPLEX , DCOMPLEX , DOUBLE , FLOAT , LONG , STRING