本文簡要介紹 python 語言中 numpy.asfarray
的用法。
用法:
numpy.asfarray(a, dtype=<class 'numpy.double'>)
返回轉換為浮點類型的數組。
- a: array_like
輸入數組。
- dtype: str 或 dtype 對象,可選
用於強製輸入數組的浮點類型代碼a.如果numpy.dtype是 ‘int’ dtypes 之一,它被替換為 float64。
- out: ndarray
輸入 a 作為浮點 ndarray。
參數:
返回:
例子:
>>> 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.])
相關用法
- Python numpy asfortranarray用法及代碼示例
- Python numpy asscalar用法及代碼示例
- Python numpy ascontiguousarray用法及代碼示例
- Python numpy asarray_chkfinite用法及代碼示例
- Python numpy asanyarray用法及代碼示例
- Python numpy asarray用法及代碼示例
- Python numpy asmatrix用法及代碼示例
- Python numpy any用法及代碼示例
- Python numpy argpartition用法及代碼示例
- Python numpy arctan用法及代碼示例
- Python numpy array用法及代碼示例
- Python numpy array_repr用法及代碼示例
- Python numpy arccos用法及代碼示例
- Python numpy all用法及代碼示例
- Python numpy add用法及代碼示例
- Python numpy around用法及代碼示例
- Python numpy array2string用法及代碼示例
- Python numpy atleast_1d用法及代碼示例
- Python numpy arctan2用法及代碼示例
- Python numpy angle用法及代碼示例
- Python numpy arctanh用法及代碼示例
- Python numpy apply_over_axes用法及代碼示例
- Python numpy arccosh用法及代碼示例
- Python numpy arange用法及代碼示例
- Python numpy argsort用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.asfarray。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。