I have two arrays:
a=np.array((1,2,3,4,5))
b=np.array((2,3,4,5,6))
What I want is to use the values of a and b for the limits of linspace e.g.
c=np.linspace(a,b,11)
I get an error when I use this code. The answer should be for the first element of the array:
c=np.linspace(a,b,11)
print c
c=[1 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2]