想要的圖像以下:python
一開始是這樣畫的:函數
import numpy as np #使用import導入模塊numpy,並簡寫成np import matplotlib.pyplot as plt #使用import導入模塊matplotlib.pyplot,並簡寫成plt plt.figure(figsize=(8,4)) #設置繪圖對象的寬度和高度 t = np.arange(0,1.1,0.1) theta = 30+15*(t**2) theta_v = 30*t theta_accel = 30 plt.plot(t,theta,label="$theta$",color="red",linewidth=2) plt.plot(t,theta_v,label="$thetaV$",color="green",linewidth=2) #plt.plot(t,theta_accel,label="$thetaAccel$",color="blue",linewidth=2) t = np.arange(1,3.1,0.1) theta = 45+30*(t-1) theta_v = 30 theta_accel = 0 plt.plot(t,theta,label="$theta$",color="red",linewidth=2) #plt.plot(t,theta_v,label="$thetaV$",color="green",linewidth=2) #plt.plot(t,theta_accel,label="$thetaAccel$",color="blue",linewidth=2) t = np.arange(3,4.1,0.1) theta = 120-15*((4-t)**2) theta_v = 30*(4-t) theta_accel = -30 plt.plot(t,theta,label="$theta$",color="red",linewidth=2) plt.plot(t,theta_v,label="$thetaV$",color="green",linewidth=2) #plt.plot(t,theta_accel,label="$thetaAccel$",color="blue") plt.ylim(-40,200) #使用plt.ylim設置y座標軸範圍 plt.xlim(-1,5) plt.xlabel("Time(s)") #用plt.xlabel設置x座標軸名稱 plt.legend(loc='upper left') #設置圖例位置 plt.grid(True) plt.show()
#plt.plot(t,theta_accel,label="$thetaAccel$",color="blue",linewidth=2)
能夠發現當theta_accel爲常數時 plot失效,沒法畫出圖像。
由於theta_accel = -30 不含變量t,改成:
theta_accel = -30 +t*0
則函數可以畫出想要畫的圖像。3d
修改完,代碼以下:對象
"""niku 習題5.5""" import numpy as np #使用import導入模塊numpy,並簡寫成np import matplotlib.pyplot as plt #使用import導入模塊matplotlib.pyplot,並簡寫成plt plt.figure(figsize=(8,4)) #設置繪圖對象的寬度和高度 t = np.arange(0,1.1,0.1) theta = 30+15*(t**2) theta_v = 30*t theta_accel = 30+t*0 plt.plot(t,theta,label="$theta$",color="red",linewidth=2) plt.plot(t,theta_v,label="$thetaV$",color="green",linewidth=2) plt.plot(t,theta_accel,label="$thetaAccel$",color="b") t = np.arange(1,3.1,0.1) theta = 45+30*(t-1) theta_v = 30+t*0 theta_accel = 0 +t*0 plt.plot(t,theta,label="$theta$",color="red",linewidth=2) plt.plot(t,theta_v,label="$thetaV$",color="green",linewidth=2) plt.plot(t,theta_accel,label="$thetaAccel$",color="b",linewidth=2) t = np.arange(3,4.1,0.1) theta = 120-15*((4-t)**2) theta_v = 30*(4-t) theta_accel = -30 +t*0 plt.plot(t,theta,label="$theta$",color="red",linewidth=2) plt.plot(t,theta_v,label="$thetaV$",color="green",linewidth=2) plt.plot(t,theta_accel,label="$thetaAccel$",color="b") plt.ylim(-40,125) #使用plt.ylim設置y座標軸範圍 plt.xlim(-1,5) plt.xlabel("Time(s)") #用plt.xlabel設置x座標軸名稱 '''設置圖例位置''' #plt.legend(loc='upper right') #設置圖例位置 plt.grid(True) plt.show()
生成圖像以下:blog
成功!!!class