numpy.sum()坐标轴问题的解决
作者:勤奋的大熊猫 时间:2023-08-23 15:05:53
由于本人在实际应用中遇到了有关 numpy.sum() 函数参数 axis 的问题,这里特来记录一下。也供大家参考。
示例
代码如下:
import numpy as np
array = np.array([[1, 1, 1, 1],
[2, 2, 2, 2]])
sum_x = np.sum(array, axis=0)
sum_y = np.sum(array, axis=1)
sum_z = np.sum(array, axis=-1)
print("The value of sum_x is: ")
print(sum_x)
print("The value of sum_y is: ")
print(sum_y)
print("The value of sum_z is: ")
print(sum_z)
"""
The value of sum_x is:
[3 3 3 3]
The value of sum_y is:
[4 8]
The value of sum_z is:
[4 8]
"""
来源:https://blog.csdn.net/u011699626/article/details/120952744
标签:numpy.sum(),坐标轴
0
投稿
猜你喜欢
python实战之百度智能云使人像动漫化
2021-01-19 07:15:11
python儿童学游戏编程知识点总结
2022-10-23 04:32:42
python处理“&#”开头加数字的html字符方法
2021-11-05 17:09:42
Dreamweaver定义本地站点
2010-07-02 16:27:00
Vuex之理解Store的用法
2024-05-13 09:37:33
Python3 列表,数组,矩阵的相互转换的方法示例
2023-05-30 23:52:19
pandas中的ExcelWriter和ExcelFile的实现方法
2023-09-20 00:10:36
pygame游戏之旅 如何制作游戏障碍
2021-03-05 00:16:28
JavaScript在ASP页面中实现掩码文本框效果代码
2013-06-01 19:57:23
Java利用套接字实现应用程序对数据库的访问
2024-01-15 19:37:47
python 生成xml文件,以及美化的实例代码
2023-05-14 23:01:22
在Python中使用filter去除列表中值为假及空字符串的例子
2022-02-01 06:47:35
CI框架整合smarty步骤详解
2023-11-14 11:18:11
vbscript与javascript如何传递变量(包括服务器端与客户端)
2008-04-09 13:46:00
将Session值储存于SQL Server中
2024-01-22 08:22:31
Python 调用VC++的动态链接库(DLL)
2023-06-19 09:01:44
django views重定向到带参数的url
2023-08-18 14:56:47
Python3 使用selenium插件爬取苏宁商家联系电话
2023-12-20 01:39:57
解决python xx.py文件点击完之后一闪而过的问题
2022-10-27 07:23:17
python实现分析apache和nginx日志文件并输出访客ip列表的方法
2022-07-08 00:33:16