05-29-2006 10:52 AM
05-29-2006 10:16 PM
05-30-2006 12:27 AM
The question is way too generic to ba able to create a specific example.
I believe you could look at the example that is found in the following folder
labview\examples\math\math.llb\Behavior of Modified Function Graph.vi
which uses the formula parsing from string function.
Regards,
AlessioD
05-30-2006 02:29 AM
OUTPUT:
EXAMPLE:
Input Formula (sums the elements of an array):
y=0;
int i;
for (i=0; i<N; i++)
y += x[i];
Input Array (size N=3):
x = { 3, 4, 5 }
Output:
y = 12
05-30-2006 03:38 AM