07-14-2005 08:44 AM
07-14-2005 09:29 AM
You have two ways to go about this. The first is to take the existing C code and compile it into a DLL and call it from LabVIEW using the Call Library Node. This way you don't have to recreate the existing algorithm.
If you want to recreate the entire thing in LabVIEW then the first step is to learn the LabVIEW constructs that are equivalent to your C constructs such as looping constructs (while, for), case structures (switch statement), and other primitives.
There is an example program that demonstrates an algorithm both in LabVIEW and the equivalent code in C that you might find useful.
http://sine.ni.com/apps/we/niepd_web_display.display_epd4?p_guid=B123AE0CB923111EE034080020E74861
07-14-2005 10:43 AM