学习
zhuqianUESTC
这个作者很懒,什么都没留下…
展开
-
《python科学计算》matplotlib学习
例子1. import numpy as np import matplotlib.pyplot as plt x = np.linspace(0, 10, 1000) #创建等差数列,起点、终点、个数 y = np.sin(x) z = np.cos(x**2) plt.figure(figsize=(8,4)) #创建Figure对象,指定长宽 plt.plot(x,y,label="原创 2015-12-27 14:27:37 · 724 阅读 · 0 评论 -
完整的哲学家进食代码
//#include "stdafx.h" #include //HADNDLE #include //#include //time(0) //#include #include "iostream" using namespace std; const unsigned int N=2; //哲学家数目 const int THINKING=1; //标记当前哲学原创 2016-05-06 16:46:54 · 10311 阅读 · 2 评论