LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

labview. Writing an equation inside a formula node

Solved!
Go to solution

How would I write this equation chl= (4.9467*mv) - 0.3239 inside a formula node? Thanks

0 Kudos
Message 1 of 6
(3,339 Views)
0 Kudos
Message 2 of 6
(3,337 Views)
Solution
Accepted by topic author EETG9000

You don't even need a formula node. An expression node would suffice. 😄

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

Of course that can be done in pure LabVIEW code with only two primitives.

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

@RavensFan wrote:

Of course that can be done in pure LabVIEW code with only two primitives.


... plus two diagram constants. 😄

0 Kudos
Message 5 of 6
(3,303 Views)
Assuming you have a formula node with an input labeled mv and an output labeled chi, I would enter it this way:

chl= (4.9467*mv) - 0.3239;

Hope this helps...

Mike...

Certified Professional Instructor
Certified LabVIEW Architect
LabVIEW Champion

"... after all, He's not a tame lion..."

For help with grief and grieving.
0 Kudos
Message 6 of 6
(3,279 Views)