I want to create a table with seven columns that each line will have all the possible combinations in order the sum of the line to be always 1. Each number will increase by 0.1 from 0 to 1. See example below:
C1 C2 C3 C4 C5 C6 C7
1 0 0 0 0 0 0
0.9 0.1 0 0 0 0 0
0.8 0.1 0.1 0 0 0 0
0.7 0.1 0.1 0.1 0 0 0
.
.
.
.
0.3 0.2 0.1 0.1 0.1 0.1 0.1
.
.
.
C1 C2 C3 C4 C5 C6 C7
1 0 0 0 0 0 0
0.9 0.1 0 0 0 0 0
0.8 0.1 0.1 0 0 0 0
0.7 0.1 0.1 0.1 0 0 0
.
.
.
.
0.3 0.2 0.1 0.1 0.1 0.1 0.1
.
.
.