numpy.asfarray(a, dtype=<class 'numpy.float64'>)
[source]
Return an array converted to a float type.
Parameters: |
|
---|---|
Returns: |
|
>>> 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.])
© 2005–2019 NumPy Developers
Licensed under the 3-clause BSD License.
https://docs.scipy.org/doc/numpy-1.17.0/reference/generated/numpy.asfarray.html