矩阵合并np.concatenate
发布日期:2022-02-25 00:55:16 浏览次数:63 分类:技术文章

本文共 2559 字,大约阅读时间需要 8 分钟。

将多个矩阵合并到一个新矩阵中

 

asix = 0: 沿行的方向合并(列数必须一致);

asix = 1:沿列的方向合并(行数必须一致);

asix = None: 先flat,再合并。

numpy.concatenate

numpy.concatenate((a1a2...)axis=0out=None)

Join a sequence of arrays along an existing axis.

Parameters:

a1, a2, … : sequence of array_like

The arrays must have the same shape, except in the dimension corresponding to axis (the first, by default).

axis : int, optional

The axis along which the arrays will be joined. If axis is None, arrays are flattened before use. Default is 0.

out : ndarray, optional

If provided, the destination to place the result. The shape must be correct, matching that of what concatenate would have returned if no out argument were specified.

Returns:

res : ndarray

The concatenated array.

See also

Concatenate function that preserves input masks.

Split an array into multiple sub-arrays of equal or near-equal size.

Split array into a list of multiple sub-arrays of equal size.

Split array into multiple sub-arrays horizontally (column wise)

Split array into multiple sub-arrays vertically (row wise)

Split array into multiple sub-arrays along the 3rd axis (depth).

Stack a sequence of arrays along a new axis.

Stack arrays in sequence horizontally (column wise)

Stack arrays in sequence vertically (row wise)

Stack arrays in sequence depth wise (along third dimension)

Notes

When one or more of the arrays to be concatenated is a MaskedArray, this function will return a MaskedArray object instead of an ndarray, but the input masks are not preserved. In cases where a MaskedArray is expected as input, use the ma.concatenate function from the masked array module instead.

Examples

>>>

>>> a = np.array([[1, 2], [3, 4]])>>> b = np.array([[5, 6]])>>> np.concatenate((a, b), axis=0)array([[1, 2],       [3, 4],       [5, 6]])>>> np.concatenate((a, b.T), axis=1)array([[1, 2, 5],       [3, 4, 6]])>>> np.concatenate((a, b), axis=None)array([1, 2, 3, 4, 5, 6])

This function will not preserve masking of MaskedArray inputs.

>>>

>>> a = np.ma.arange(3)>>> a[1] = np.ma.masked>>> b = np.arange(2, 5)>>> amasked_array(data = [0 -- 2],             mask = [False  True False],       fill_value = 999999)>>> barray([2, 3, 4])>>> np.concatenate([a, b])masked_array(data = [0 1 2 2 3 4],             mask = False,       fill_value = 999999)>>> np.ma.concatenate([a, b])masked_array(data = [0 -- 2 2 3 4],             mask = [False  True False False False False],       fill_value = 999999)

Previous topic

Next topic

Quick search

 

  • © Copyright 2008-2018, The SciPy community.
  •  
  • Last updated on Jul 24, 2018.
  •  
  • Created using  1.6.6.

转载地址:https://blog.csdn.net/qq_30285471/article/details/81625074 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:tf.assign
下一篇:open().read()函数

发表评论

最新留言

路过按个爪印,很不错,赞一个!
[***.219.124.196]2024年04月22日 23时00分55秒

关于作者

    喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!

推荐文章