If I have a numpy array like this:
[2.15295647e+01, 8.12531501e+00, 3.97113829e+00, 1.00777250e+01]
how can I move the decimal point and format the numbers so I end up with a numpy array like this:
[21.53, 8.13, 3.97, 10.08]
np.around(a, decimals=2)
only gives me [2.15300000e+01, 8.13000000e+00, 3.97000000e+00, 1.00800000e+01]
Which I don't want and I haven't found another way to do it.