I wanted to do it in a formula node like for example.
int a = 10;
int x = 1;
int inc = 1;
int arraytemp[samples];
while(a < inc*x)
arraytemp[samples] = inc*x;
x = x + 1;
end
This is how my code looks as far as setting up the array and putting information into it.
Why I am getting syntax errors all over the place. I know am not sure the 'end' is correct
but I had errors before that was in place.