At first i needed an array like this:
[0. , 0.25, 0.5 , 0.75, 1. ] which is np.linspace(0,1,5). But now I need an array like this:
[[0. , 0.],
[0.25, 0.5],
[0.5 , 1.],
[0.75, 1.5],
[1. , 2]]
Note that array[1][0] != array[1][1]!
Can't really explain how but it should sort of like this:
array[:][0] = np.linspace(0,1,5)
array[:][1] = np.linspace(0,2,5)
Where array[0][0] is np.linspace(0,1,5)[0]
and array[1][0] is np.linspace(0,1,5)[1]
I hope you kind of understand what array I'm trying to build here. Thanks in advance!