IBM0550S
ONCODE=oncode-value X in EXP(X) was invalid.

Explanation

One of the following conditions occurred:
  • X was less than K, where K is as follows:
    • –87.33 for short floating-point arguments
    • –708.39 for long floating-point arguments
    • –11355.13 for extended floating-point arguments
  • The absolute value of the imaginary part of X was greater than or equal to K, where K=2**63 for complex short and long floating-point values, and K=2**64 for complex extended floating-point values. :li.An overflow occurred because the real part of X was greater than K, where K is as follows:
    • 89.06 for complex short floating-point arguments
    • 710.12 for complex long floating-point arguments
    • 11356.87 for complex extended floating-point arguments
  • An overflow occurred because the real part of X was greater than I but less than J, and the imaginary part was out of range. The values for I and J are as follows:
    • I = 88.73 and J = 89.06 for complex short floating-point arguments
    • I = 709.79 and J = 710.12 for complex long floating-point arguments
    • I = 11357.53 and J = 11356.87 for complex extended floating-point arguments
  • X was greater than or equal to K, where K is as follows:
    • 88.73 for short floating-point arguments
    • 709.79 for long floating-point arguments
    • 11356.53 for extended floating-point arguments
The ONCODEs associated with this message are:
  • For real short floating-point arguments:
    1565
    Argument less than limit
    1611
    Argument greater than or equal to limit
  • For complex short floating-point arguments:
    1568
    Absolute value of the imaginary part of argument greater than or equal to limit
  • For real long floating-point arguments:
    1566
    Argument less than limit
    1612
    Argument greater than or equal to limit
  • For complex long floating-point arguments:
    1569
    Absolute value of the imaginary part of argument greater than or equal to limit
  • For real extended floating-point arguments:
    1567
    Argument less than limit
    1613
    Argument greater than or equal to limit
  • For complex extended floating-point arguments:
    1570
    Absolute value of the imaginary part of argument greater than or equal to limit

System action

The ERROR condition is raised.

Programmer response

Ensure X is valid.

Symbolic Feedback Code

IBM0H6