Generating evenly spaced triplets of probabilities in Python
I need to test different discrete probability distributions and it happens that I need triplets but it can probably be generalized to higher number of elements. I would like to cover the space quite evenly. For example, for a step of 2, I would like something of the kind of : [[0,0,1],[0,0.5,0.5],[0,1,0],[0.5,0,0.5],[0.5,0.5,0],[1,0,0]] My current idea… Read More Generating evenly spaced triplets of probabilities in Python