EGL0186E The pow Math function failed with error code 8 (domain error).

Explanation

If the first argument is less than zero, the second must be an integer.

User Response

Do as follows:
  • Change the program logic to ensure that if the first argument passed to the function is less than zero, the second argument is an integer; or
  • Call the function in a try statement, or set vgVar.handlesysLibraryErrors to 1 before calling the function, so that the program can handle the error.

Feedback