I am trying to generate a 5 column array in Python where the first number in each row remains fixed at .2, but the next 4 numbers in each row vary and each row of numbers sum to 1. So something like
[.2, .2, .2, .2, .2]
[.2, .3, .1, .2, .2]
[.2, .2, 0, .6, 0]
[.2, .5, 0, .1, .2]
Would this be possible?