本文簡要介紹 python 語言中 numpy.select
的用法。
用法:
numpy.select(condlist, choicelist, default=0)
根據條件返回從選擇列表中的元素中提取的數組。
- condlist: bool ndarrays 列表
確定從選擇列表中的哪個數組獲取輸出元素的條件列表。當滿足多個條件時,使用 condlist 中遇到的第一個條件。
- choicelist: ndarrays 列表
從中獲取輸出元素的數組列表。它必須與 condlist 的長度相同。
- default: 標量,可選
當所有條件評估為 False 時插入到輸出中的元素。
- output: ndarray
位置 m 的輸出是choicelist 中數組的m-th 元素,其中condlist 中相應數組的m-th 元素為True。
參數:
返回:
例子:
>>> x = np.arange(6) >>> condlist = [x<3, x>3] >>> choicelist = [x, x**2] >>> np.select(condlist, choicelist, 42) array([ 0, 1, 2, 42, 16, 25])
>>> condlist = [x<=4, x>3] >>> choicelist = [x, x**2] >>> np.select(condlist, choicelist, 55) array([ 0, 1, 2, 3, 4, 25])
相關用法
- Python numpy searchsorted用法及代碼示例
- Python numpy setdiff1d用法及代碼示例
- Python numpy seterr用法及代碼示例
- Python numpy seterrobj用法及代碼示例
- Python numpy set_printoptions用法及代碼示例
- Python numpy setxor1d用法及代碼示例
- Python numpy set_string_function用法及代碼示例
- Python numpy seterrcall用法及代碼示例
- Python numpy shape用法及代碼示例
- Python numpy scimath.log用法及代碼示例
- Python numpy signbit用法及代碼示例
- Python numpy sort用法及代碼示例
- Python numpy scimath.logn用法及代碼示例
- Python numpy square用法及代碼示例
- Python numpy std用法及代碼示例
- Python numpy scimath.log2用法及代碼示例
- Python numpy sum用法及代碼示例
- Python numpy spacing用法及代碼示例
- Python numpy squeeze用法及代碼示例
- Python numpy scimath.arccos用法及代碼示例
- Python numpy shares_memory用法及代碼示例
- Python numpy s_用法及代碼示例
- Python numpy swapaxes用法及代碼示例
- Python numpy sctype2char用法及代碼示例
- Python numpy show_config用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.select。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。