I want to convert this list in a numpy array:
var=[array([ 33.85967782]), array([ 34.07298272]), array([ 35.06835424])]
The result should be the following:
[[ 33.85967782]
[ 34.07298272]
[ 35.06835424]]
but, if I type var = np.array(var)
, the result is the following:
[array([ 33.85967782]) array([ 34.07298272]) array([ 35.06835424])]
I have the numpy library: import numpy as np
can you help me, please?
Thanks!