I think the problem is due to feeding the random component 20 seed values for each path. You only need to give it one seed value per path. The trick is getting each seed value to be different so each random set contains different values. You should be able to do that by grafting a series component and feeding it to the S input. Check out the attached stuff.
Hi David, I am trying to take this up another step and attempt to generate random values within ranges that are unique.
What I am looking for is 11 paths with 11 values but each one of the values has a specific domain, for example:
0.) 0 to 1 -----> 11 random values from 0 to 1 (0.245,0.678,0.36,0.78,.28,0.18........)
1.) 1 to 2 -----> 11 random values from 1 to 2 (1.26,1.36,1.01,1.68,1.26,1.96.........)
3.) 2 to 3 -----> 11 random values from 2 to 3 (2.96,2.45,2.78,2.56,2.98,2.10..........)
4.) 3 to 4 and so on where I have a data set containing 11 paths with 11 values and the values fall within the specific domain.
Like my post above I have the correct path but I need to feed it the correct seed to get different values for each number. I tried grafting a series similar to the last post but it scrambles my data. Thanks so much for the help!
thanks for the reply Taz, I have added one more layer of complexity and cant quite seem to get through it. If I were to have what you solved above but with groups that are different for each set is this possible? You can see in my screen shot that the data appears to be set up correctly but my results are still slightly off....