我是靠谱客的博主 孝顺镜子,最近开发中收集的这篇文章主要介绍python numpy的sum函数,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

顾名思义,sum函数的作用就是用于求和,不过特殊的在于能对矩阵按行和列进行求和。

sum的参数比较多,我们仅对前面两个参数进行说明。

Help on function sum in module numpy.core.fromnumeric:

sum(a, axis=None, dtype=None, out=None, keepdims=<class 'numpy._globals._NoValue'>)
    Sum of array elements over a given axis.

    Parameters
    ----------
    a : array_like
        Elements to sum.
    axis : None or int or tuple of ints, optional
        Axis or axes along which a sum is performed.  The default,
        axis=None, will sum all of the elements of the input array.  If
        axis is negative it counts from the last to the first axis.

        .. versionadded:: 1.7.0

        If axis is a tuple of ints, a sum is performed on all of the axes
        specified in the tuple instead of a single axis or all the axes as
        before.

如果只有一个入参a,则就是简单的求和函数,所有元素相加即可,

>>> a=eye(2)
>>> a
array([[1., 0.],
       [0., 1.]])
>>> sum(a)
2.0
>>> b=[1,2,3]
>>> sum(b)
6

可见,不管是对于矩阵,还是数组,都是所有元素相加。

如果需要分别对行向量和列向量求和,就需要使用axis这个参数了,

>>> c=array([[1,2,3],[1,2,3],[1,2,3]])
>>> c
array([[1, 2, 3],
       [1, 2, 3],
       [1, 2, 3]])
>>> sum(c, axis=0)
array([3, 6, 9])
>>> sum(c, axis=1)
array([6, 6, 6])
>>> 

由此我们知道,
sum(axis=0):即每一行为一个元素,以列方向相加
sum(axis=1):即每一列为一个元素,以行方向相加

最后

以上就是孝顺镜子为你收集整理的python numpy的sum函数的全部内容,希望文章能够帮你解决python numpy的sum函数所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部