I'm trying to develop a Case structure in LabVIEW 6.1 for the following pseudo-code:
int x;
if(x<=0)
y=0;
elseif(x==1)
y=1;
elseif(2<=x<=4)
y=2;
else
y=5;
end
I'm getting an error 'selected values are not unique' and can't seem to figure out where the problem is.... could someone kindly assist.