1. 程式人生 > >使用Anaconda操作numpy庫和matplotlib圖形庫

使用Anaconda操作numpy庫和matplotlib圖形庫

amp col anaconda 技術 lib http show otl plot

慢慢來~~~

import numpy as np
import matplotlib.pyplot as plt

# 生成數據
x = np.arange(0, 6, 0.1) # 以0.1為單位,生成0到6的數據
y1 = np.sin(x)
y2 = np.cos(x)
# 繪制圖形
plt.plot(x, y1, label="sin")
plt.plot(x, y2, linestyle = "--", label="cos") # 用虛線繪制
plt.xlabel("x") # x軸標簽
plt.ylabel("y") # y軸標簽
plt.title(sin & cos
) # 標題 plt.legend() plt.show()

技術分享圖片

技術分享圖片

使用Anaconda操作numpy庫和matplotlib圖形庫