本文簡要介紹 python 語言中 numpy.row_stack
的用法。
用法:
numpy.row_stack(tup)
垂直(按行)按順序堆疊數組。
這相當於在形狀的一維數組之後沿第一個軸串聯(N,)已被重塑為(1,N)。重建數組除以numpy.vsplit.
此函數對最多 3 維的數組最有意義。例如,對於具有高度(第一軸)、寬度(第二軸)和 r/g/b 通道(第三軸)的 pixel-data。函數
concatenate
、stack
和block
提供更通用的堆疊和連接操作。- tup: ndarrays 序列
除了第一個軸之外,陣列必須沿所有方向具有相同的形狀。一維數組必須具有相同的長度。
- stacked: ndarray
通過堆疊給定數組形成的數組將至少是二維的。
參數:
返回:
例子:
>>> a = np.array([1, 2, 3]) >>> b = np.array([4, 5, 6]) >>> np.vstack((a,b)) array([[1, 2, 3], [4, 5, 6]])
>>> a = np.array([[1], [2], [3]]) >>> b = np.array([[4], [5], [6]]) >>> np.vstack((a,b)) array([[1], [2], [3], [4], [5], [6]])
相關用法
- Python numpy roll用法及代碼示例
- Python numpy rollaxis用法及代碼示例
- Python numpy roots用法及代碼示例
- Python numpy rot90用法及代碼示例
- Python numpy recarray.dot用法及代碼示例
- Python numpy random.mtrand.RandomState.wald用法及代碼示例
- Python numpy recarray.itemset用法及代碼示例
- Python numpy random.mtrand.RandomState.multivariate_normal用法及代碼示例
- Python numpy random.standard_exponential用法及代碼示例
- Python numpy recarray.view用法及代碼示例
- Python numpy random.mtrand.RandomState.gumbel用法及代碼示例
- Python numpy random.mtrand.RandomState.multinomial用法及代碼示例
- Python numpy random.rand用法及代碼示例
- Python numpy random.mtrand.RandomState.logistic用法及代碼示例
- Python numpy random.mtrand.RandomState.shuffle用法及代碼示例
- Python numpy random.triangular用法及代碼示例
- Python numpy recarray.tolist用法及代碼示例
- Python numpy recarray.setflags用法及代碼示例
- Python numpy random.noncentral_f用法及代碼示例
- Python numpy recarray.flat用法及代碼示例
- Python numpy random.mtrand.RandomState.poisson用法及代碼示例
- Python numpy recarray用法及代碼示例
- Python numpy recarray.sort用法及代碼示例
- Python numpy random.lognormal用法及代碼示例
- Python numpy random.mtrand.RandomState.seed用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.row_stack。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。