Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exception Mode "ieee(1)" has No Effect for Division by Complex Zero #389

Closed
rdbyk opened this issue Feb 26, 2018 · 0 comments
Closed

Exception Mode "ieee(1)" has No Effect for Division by Complex Zero #389

rdbyk opened this issue Feb 26, 2018 · 0 comments

Comments

@rdbyk
Copy link
Owner

rdbyk commented Feb 26, 2018

--> ieee(2)
--> 1/(0+0*%i)
 ans  =
   Inf  

--> ieee(1)
--> 1/(0+0*%i)
 ans  =
   Inf  // Not Ok, cf. real case below

--> ieee(0)
--> 1/(0+0*%i)
Division by zero...

Analog real operations:

--> ieee(2)

--> 1/0
 ans  =
   Inf

--> ieee(1)
--> 1/0
Warning : Division by zero...
 ans  =
   Inf

--> ieee(0)
--> 1/0
Division by zero...
rdbyk added a commit that referenced this issue Feb 26, 2018
Fixed #378 #389 (Refactored Complex Division)
@rdbyk rdbyk closed this as completed Feb 26, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant