I have some constant , for example, 0.5
. So i need to create a numpy array where first element will be equal constant (array[0]=0.5) and next one will be 1, 1.5, 2, 2.5...
(previous element plus constant). Lenght of this sequence must be 795
.
Array what i need looks like:
array = ([0.5,1,1.5,2,2.5.....])
thank you in advance