We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
This works as expected:
1 + 2 SIN = - yields 1 + SIN(2) = 1.909...
This doesn't:
1 SIN + 2 = - should yield SIN(1) + 2 = 2.841
... but actually yields 2 + whatever the previous result was (might be 0 so 2, etc)
The root cause is that farg is never updated after the function is used:
farg
In the first example:
In the second:
The text was updated successfully, but these errors were encountered:
02357ea
No branches or pull requests
This works as expected:
1 + 2 SIN = - yields 1 + SIN(2) = 1.909...
This doesn't:
1 SIN + 2 = - should yield SIN(1) + 2 = 2.841
... but actually yields 2 + whatever the previous result was (might be 0 so 2, etc)
The root cause is that
farg
is never updated after the function is used:In the first example:
In the second:
The text was updated successfully, but these errors were encountered: