02-21-2005 02:09 PM
02-21-2005 02:54 PM
02-04-2014 10:31 PM
Here is an example of an if statement in labview
if (y==x && a[2][3]<a[0][1]) {
int32 temp;
temp = a[2][3];
a[2][3] = y;
y=temp;
}
else
x=y;
Another simple if statement
if (x>.004 && x<=.008)
y=.000267;
else if (x > .008 && x<= .012)
y = .000299;
else if (x > .012 && x<= .016)
y = .000322;
else if (x > .016 && x<= .020)
y = .000355 ;
else
y = .000400;
02-05-2014 02:15 AM - edited 02-05-2014 02:17 AM
02-06-2014 11:28 AM
The thread still comes up in a search, the example will work in labview 2013..so your point is?
02-06-2014 11:31 AM