I have this function inside a software:
a+(SeededRand(Round((SongTime-0.5+(Round(1000*c)))*1))-0.5)*b
it creates a pseudo-random numbers sequence inside the [0,1] interval.
The problem is that some values can be so close each others, such as :
6° number is 0.77569580078125
7° number is 0.781097412109375
is there a way to have a sequence of numbers not close each others? In the order of 0,2 distance, for example.
Hope the question is clear, else let me know and I'll try to explain it better...
There is no way to do this, if you want (pseudo) random properties. Even if you randomly select from the numbers 0.0, 0.2, 0.4, 0.6, 0.8, 1.0 there must be a positive probability that a number is the same as its neighbour in the generated sequence.