LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

How to reverse an Expression?

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.

---------------------------------------------------

0 Kudos
Message 1 of 6
(3,162 Views)

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).

0 Kudos
Message 2 of 6
(3,156 Views)

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?

0 Kudos
Message 3 of 6
(3,143 Views)

altenbach already gave you the answer; LabVIEW does not do symbolic math.

 

 

 

 

 

0 Kudos
Message 4 of 6
(3,129 Views)

@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. 🙂

0 Kudos
Message 5 of 6
(3,109 Views)
For one of the code contests I submitted code to call Wolfram Alpha from LV. Of course the voters decided that checking the weather was more interesting so I did not continue to update. My own development continued specifically to implement symbolic differentiation and more powerful plotting. Works great for auto generating curve fits without numeric differentiation.

 

https://decibel.ni.com/content/docs/DOC-15420

 

Message 6 of 6
(3,107 Views)