import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
plt.figure(1) # 創(chuàng)建圖表1
plt.figure(2) # 創(chuàng)建圖表2
ax1 = plt.subplot(211) # 在圖表2中創(chuàng)建子圖1
ax2 = plt.subplot(212) # 在圖表2中創(chuàng)建子圖2
x = np.linspace(0, 3, 100)
for i in range(5):
plt.figure(1) #? # 選擇圖表1
plt.plot(x,np.exp(i*x/3))
plt.sca(ax1) #? #
選擇圖表2的子圖1
plt.plot(x,np.sin(i*x))
plt.sca(ax2) # 選擇圖表2的子圖2
plt.plot(x,np.cos(i*x))
plt.show()
使用Python畫數(shù)學(xué)函數(shù)曲線
使用Python畫數(shù)學(xué)函數(shù)曲線
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
plt.figure(1)
x = np.linspace(1, 200, 400)
y=1000*(2.0-169.0/x)
y[x<84.5] = 0
y[x>169]=1000
plt.plot(x, y)
plt.show()
使用Python畫數(shù)學(xué)函數(shù)曲線