I was trying to generate a pseudo-random angle in processing today using noise but it is not working as I would have hoped.

float xoff = 0;
float inc = 0.01;

void draw(){
 float vx = cos( noise(xoff) * 2 * PI));
 xoff += inc;
}

This is the important part of my code. What I thought would happen was that vx would be a random float between -1 and 1 but it is almost always negative. What seems to be the problem is that the noise(xoff) is outputting a limited range of values. Only between 0.3 and 0.7. For vx to be positive it needs to be lower than 0.3 and higher than 0.7, but this never almost never happens.

What is going wrong here?

link|improve this question

50% accept rate
1  
Are you looking for a uniform distribution in the range [0,1]? If so, why not just use random()? – I82Much Aug 11 '11 at 4:50
feedback

1 Answer

You might adjust the noiseDetail() to include more than 4 octaves or to use a falloff below 0.5.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.