I know it's a very basic question but couldn't solve it. I need to optimize my values and to do that I have to increase the variables in a certain way such as:
X_1=(0 0 0)
x_2=(0 0 0.1)
x_3=(0 0.1 0.1)
X_4=(0.1 0 0.1)
x_5=(0.1 0.1 0.1)
x_6=(0.2 0 0)
x_7=(0.2 0 0.1)
...
if I do it with for loops such as
for i=0:0.1:2
for j=0:0.1:2
for k=0:0.1:2
x=(0+i 0+j 0+k)
end
end
end
I cannot get all combinations that I want with 3 for loop. Could you please help me about it?
Thanks in advance.