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? 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
Is it possible to find/calculate variable from equation?
Parser pdebug = Parser(); Expression expdebug = pdebug.parse("(((x) - 32)/1.8)+273.15")
So I have that this equation is equal to 50. So for I want "50 = (((x) - 32)/1.8)+273.15. Find x?
Thank you
The text was updated successfully, but these errors were encountered:
Hi @aalpersen, solving equations is not possible with this library, it can only evaluate expressions.
You might find a package like equations more suitable for this task.
There you can solve your example equation by finding the root for: $50 = \frac{(x) - 32)}{1.8} + 273.15 \iff 0 = \frac{(x) - 32)}{1.8} + 273.15 - 50$
Sorry, something went wrong.
Ok, thanks for input and your awesome library.
No branches or pull requests
Is it possible to find/calculate variable from equation?
Parser pdebug = Parser();
Expression expdebug = pdebug.parse("(((x) - 32)/1.8)+273.15")
So I have that this equation is equal to 50. So for I want "50 = (((x) - 32)/1.8)+273.15. Find x?
Thank you
The text was updated successfully, but these errors were encountered: