- 单机右方的Jupyter Notebook,稍后在浏览器里会显示Jupyter Notebook的运行环境。
- 在File的第一个下拉菜单“New Notebook” 的右侧箭头处选择“Python 3”,然后会显示一个新的页面
- 把下面的这段python代码拷贝到这个页面“In [ ]:”右侧的空白栏中, 然后单击上方的按键“运行”。
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 2.5, num=26)
print(x)
# y = np.sin(x)
# y = np.power(np.e, np.sqrt(np.sin(x)))
# y = np.power(np.e, x)
y = np.sqrt(np.sin(x))
print(y)
plt.scatter(x, y)
plt.show()
-
维基百科
- Chain rule | 链式法则
- Xi (letter) | Ξ
- Phi | Φ
-
同济大学数学教研室.高等数学-上册.第四版.北京:高等教育出版社,1996:101,110,115-116.