摘要:
import numpy as np a = np.array([[1,5,3],[4,2,6]]) print(a.min()) #无参,所有中的最小值 print(a.min(0)) # axis=0; 每列的最小值 print(a.min(1)) # axis=1;每行的最小值 a.min() 阅读全文
posted @ 2019-12-22 21:50
一杯明月
阅读(2466)
评论(0)
推荐(0)
摘要:
linux下运行c++程序时,希望控制台不会输出后马上消失。在windows系统下,用如下语句:#include <cstdlib>system("pause");发现在linux系统下会出现如题的错误,这是因为linux不认识 system("pause"); 这条语句,改为:#include < 阅读全文
posted @ 2019-12-22 18:40
一杯明月
阅读(2521)
评论(0)
推荐(0)
摘要:
博客转载:https://blog.csdn.net/weixin_43374723/article/details/84064644 Visual studio code是微软发布的一个运行于 Mac OS X、Windows和 Linux 之上的,针对于编写现代 Web 和云应用的跨平台源代码编 阅读全文
posted @ 2019-12-22 11:00
一杯明月
阅读(6667)
评论(0)
推荐(0)
摘要:
A hundred years ago it was assumed and scientifically "proved" by economists that the laws of society make it necessary to have a vast army of poor an 阅读全文
posted @ 2019-12-22 08:18
一杯明月
阅读(394)
评论(0)
推荐(0)