So I have some data which are in this format:
[array([[0.00849484],[0.00830291],[0.00735711]]) array([[0.00795935],[0.00772346],[0.00740238]])...]
How can I convert it into simple 1D array?
[0.00849484 0.00830291 0.00735711 0.00795935 0.00772346 0.00740238]