I need to automatically raise an error, if I divide by zero in numpy array using the "/" operator, or better if I do any operation, that results in nan.
What numpy does instead is to return nan value. I do not need my program to run after that, since there is obviously a mistake.
I want a way to know when division by zero is used and on which line. Just forbid any value of nan to be even created.
You can do some thing like this:
And when you run the code, you would get: