當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Numpy np.ma.concatenate()用法及代碼示例


借助np.ma.concatenate()方法,我們可以借助串聯兩個數組np.ma.concatenate()方法。

用法: np.ma.concatenate([list1, list2])
返回:Return the array after concatenation.

範例1:
在這個例子中,我們可以通過使用np.ma.concatenate()方法,我們可以借助此方法獲取連接數組。


# import numpy 
import numpy as np 
import numpy.ma as ma 
  
gfg1 = np.array([1, 2, 3]) 
gfg2 = np.array([4, 5, 6]) 
  
# using np.ma.concatenate() method 
gfg = ma.concatenate([gfg1, gfg2]) 
  
print(gfg)

輸出:

[1 2 3 4 5 6]

範例2:

# import numpy 
import numpy as np 
import numpy.ma as ma 
  
gfg1 = np.array([11, 22, 33]) 
gfg2 = np.array([41, 52, 63]) 
  
# using np.ma.concatenate() method 
gfg = ma.concatenate([[gfg1], [gfg2]]) 
  
print(gfg)

輸出:

[[11 22 33]
[41 52 63]]



相關用法


注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Python | Numpy np.ma.concatenate() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。