Konversi semua nilai dalam array menjadi float

import numpy as np
x = np.array(['1.1', '2.2', '3.3'])
y = x.astype(np.float)
Terrible Tapir