08-28-2019 05:12 AM
Dear ,
I would like to use formula node to build a function that does the following:
y=16 + (x and1)*16 + log2[(x and1)*(2x-65535)+(65535-x)]
In Exel is quite straight forward as in the attachment.
any help how to translate it into Labview Formula node?
=16+MOD(C6;1)*16-LOG(65536-C6+MOD(C6;1)*(2*C6-65535);2)
Solved! Go to Solution.
08-28-2019 06:13 AM
08-28-2019 08:10 AM
@malkowki wrote:
=16+MOD(C6;1)*16-LOG(65536-C6+MOD(C6;1)*(2*C6-65535);2)
You can copy that almost directly to the formula node like this:
off-topic:
Gerd, die Excel-Funktion MOD(;) entspricht in der deutschen Version der Funktion REST(Zahl;Divisor)
08-28-2019 08:58 AM
I the mean time I have found the solution just using the formula expression table from :
https://zone.ni.com/reference/en-XX/help/371361R-01/lvhowto/formula_node_and_express/
Thanks for your answers
08-28-2019 09:04 AM