I am currently getting:
y=[[ 0.16666667]
[-0.16666667]
[ 0.16666667]]
This comes out of a function im using and i need to turn the above into a list in the format below:
x= [0.16666667,-0.16666667,0.16666667]
I tried list(y) but this does not work, because it returns:
[array([ 0.16666667]), array([-0.16666667]), array([ 0.16666667])]
How exactly would I do this??