You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the best way to solve this problem would be by avoiding parts of the domain where it becomes infinite. I think this would be equivalent to skipping the regions where 1/f(x) has a zero factor.
The other option is interval arithmetic, which could become very complicated, since this essentially means I will need to invent a new number type instead of simply dealing with the JavaScript Number type, or an OpenGL float type. This option would work, but might be difficult.
A third option would be to just skip the line segment if it jumps too quickly. I would do this by just making the line segment transparent between any two points which have a large jump.
And I don't need a donation at the moment, thanks.
If you plot a graph, say (x+3)/(x-2) you have an undefined value at -2. This should not be drawn, however, we get a vertical line: http://www.gute-mathe-fragen.de/?qa=blob&qa_blobid=18172464407364120737
Another example, even worse: x+tan(x)
http://www.gute-mathe-fragen.de/?qa=blob&qa_blobid=8602167692544029133
This an important issue as users might think there is some value defined.
How can we solve that?
PS: I am ready to donate some money if that could be solved. As I said, that is a very important issue.
The text was updated successfully, but these errors were encountered: