本文簡要介紹 python 語言中 numpy.ma.fromfunction
的用法。
用法:
ma.fromfunction(function, shape, **dtype) = <numpy.ma.core._convert2ma object>
通過在每個坐標上執行一個函數來構造一個數組。
因此,結果數組在坐標
(x, y, z)
處具有值fn(x, y, z)
。- function: 可調用的
該函數使用 N 個參數調用,其中 N 是
shape
的等級。每個參數代表沿特定軸變化的陣列坐標。例如,如果shape
是(2, 2)
,那麽參數將是array([[0, 0], [1, 1]])
和array([[0, 1], [0, 1]])
- shape: (N,) 整數元組
輸出數組的形狀,它也決定了傳遞給函數的坐標數組的形狀。
- dtype: 數據類型,可選
傳遞給的坐標數組的數據類型函數.默認,numpy.dtype是浮點數的。
- like: array_like
允許創建非 NumPy 數組的引用對象。如果作為
like
傳入的類似數組支持__array_function__
協議,則結果將由它定義。在這種情況下,它確保創建一個與通過此參數傳入的數組對象兼容的數組對象。
- 來自函數:MaskedArray
調用結果函數直接傳回去。因此形狀為numpy.fromfunction完全由函數.如果函數返回一個標量值,形狀numpy.fromfunction不匹配numpy.shape範圍。
參數:
返回:
注意:
關鍵字以外的numpy.dtype被傳遞給函數.
例子:
>>> np.fromfunction(lambda i, j: i == j, (3, 3), dtype=int) array([[ True, False, False], [False, True, False], [False, False, True]])
>>> np.fromfunction(lambda i, j: i + j, (3, 3), dtype=int) array([[0, 1, 2], [1, 2, 3], [2, 3, 4]])
相關用法
- Python numpy ma.frombuffer用法及代碼示例
- Python numpy ma.fix_invalid用法及代碼示例
- Python numpy ma.flatnotmasked_edges用法及代碼示例
- Python numpy ma.filled用法及代碼示例
- Python numpy ma.flatnotmasked_contiguous用法及代碼示例
- Python numpy ma.indices用法及代碼示例
- Python numpy ma.zeros用法及代碼示例
- Python numpy ma.diff用法及代碼示例
- Python numpy ma.mask_rowcols用法及代碼示例
- Python numpy ma.where用法及代碼示例
- Python numpy ma.zeros_like用法及代碼示例
- Python numpy ma.notmasked_contiguous用法及代碼示例
- Python numpy ma.concatenate用法及代碼示例
- Python numpy ma.apply_along_axis用法及代碼示例
- Python numpy ma.compress_rowcols用法及代碼示例
- Python numpy ma.vstack用法及代碼示例
- Python numpy ma.atleast_3d用法及代碼示例
- Python numpy ma.count用法及代碼示例
- Python numpy ma.mean用法及代碼示例
- Python numpy ma.argmax用法及代碼示例
- Python numpy ma.empty_like用法及代碼示例
- Python numpy ma.hstack用法及代碼示例
- Python numpy ma.isMA用法及代碼示例
- Python numpy ma.argmin用法及代碼示例
- Python numpy ma.asarray用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.ma.fromfunction。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。