Hello,
I am wondering how to change the value of "N" in a for loop. The thing is that, when a certain condtion is not met, the for loop needs to increment the value of "N".
The code in c++ would look like this...
for (i=0; i<=max; i++)
{
if (condition)
{
max+=1;
}
}
Is this possible with labview?
Thanking you in advance,
D.S