Return an array converted to a float type.
Parameters : | a : array_like
dtype : str or dtype object, optional
|
---|---|
Returns : | out : ndarray
|
Examples
>>> np.asfarray([2, 3])
array([ 2., 3.])
>>> np.asfarray([2, 3], dtype='float')
array([ 2., 3.])
>>> np.asfarray([2, 3], dtype='int8')
array([ 2., 3.])