I have an array of 5 numbers:
A = [10, 20, 40, 80, 110]
I need to create a new array with a 10nth length numbers.
The extra numbers could be the average number between the two # of A
.
for example: EDIT B = [10 , 15 , 20 ,30, 40, 60, 80, 95, 110 ]
Is it possible using a scipy or numpy function ?