10-23-2013 03:55 PM
I have a build that always wants to include lvanlys.dll.
What is calling it? How do iremove it?
Solved! Go to Solution.
10-23-2013 04:01 PM
It is required for most tools in the math and analysis palettes, etc. Unless your VI is very simple, chances are you need it.
Why do you want to remove it? Remove from where?
10-23-2013 04:05 PM
I am trying to figure out why this one project add it to the build.
I am not using any math function beyond add subtract multiply and I don't think I am even using division at all.
10-23-2013 04:11 PM - edited 10-23-2013 04:12 PM
Go to your project and find it in the dependencies section. Then try the following:
10-23-2013 04:15 PM
Thanks, I am using the Mean function in a Functional Global, that is what is calling it.
10-23-2013 04:18 PM
Well, if that's the only function, you could roll your own:
"Add array elements" divided by "array size" ---> mean. 😄
10-23-2013 04:50 PM
@altenbach wrote:
Well, if that's the only function, you could roll your own:
"Add array elements" divided by "array size" ---> mean. 😄
How "mean." 😄
07-18-2016 08:49 AM
Hello LabVIEW Gurus...
What is the correct syntax to link the maths function ?
I found the following :
1) C:\Program Files (x86)\National Instruments\LabVIEW 2014\resource\lvanlys.dll
2) lvanlys.dll
3) lvanlys.*
Today i have two lvanlys.dll into my dependencies answering both "Why this tiem is in dependencies ?" the VI attached...
Boths Maths VI are calling Maths DLL using the first call method.
It might be important to know my VI is part of LVlib which is going to be part of a PackedLibrary then.
Getting those two lvanlys.dll make the build duplicating this DLL in different folders !
DATA0
DATA1
I am going to add prefix to my LVlibP dependencies as decribed in this topic :
https://decibel.ni.com/content/docs/DOC-20274
but i still need only one lvanlys.dll into my project before building it !
BR,
Vincent
07-18-2016 09:25 AM
Hello,
I renamed the DLL lvanlys.dll call by
" C:\Program Files (x86)\National Instruments\LabVIEW 2014\resource\lvanlys.* "
It deletes one of the lvanlys.dll i had into my dependencies.
I hope this could help any of you.
BR,
Vincent