02-23-2012 12:54 AM
Hi All,
Is there a way to reverse an expression?
for eg., If my expression is A=X*Y+Z, Then I want to find the expression for X. (i.e. Output should be X=(A-Z)/Y ).
Any Help or Suggestions are highly appreciated.
Thanks,
Vairamuthu.
---------------------------------------------------
02-23-2012 01:21 AM
LabVIEW does not do symbolic math.
Just go to wolfram alpha, it will solve it
(just enter "solve A=X*Y+Z for X" and it will even tell you that Y cannot be zero for the solution).
02-23-2012 03:02 AM
altenback,
Thank you for your response.
Wolfram alpha is solving the exact thing that I want. But I want to be implemented in LabVIEW. Is there a way?
02-23-2012 05:45 AM
altenbach already gave you the answer; LabVIEW does not do symbolic math.
02-23-2012 09:11 AM
@PhillipBrooks wrote:
altenbach already gave you the answer; LabVIEW does not do symbolic math.
On the other hand, LabVIEW is a full featured programming language, so with sufficient effort you could build you own symbolic math engine. 🙂 Alternatively, you could build a parser that taps into a web based symbolic math service.
If you have an infinite amount of time and resources, and excellent programming skills, it could be done. 🙂
02-23-2012 09:19 AM
https://decibel.ni.com/content/docs/DOC-15420