91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python編程如何使用matplotlib繪制動態圓錐曲線

發布時間:2021-10-19 13:34:16 來源:億速云 閱讀:204 作者:小新 欄目:開發技術

這篇文章主要介紹了Python編程如何使用matplotlib繪制動態圓錐曲線,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

作為讓高中生心臟驟停的四個字,對于高考之后的人來說可謂刻骨銘心,所以定義不再贅述,直接擼圖,其標準方程分別為

Python編程如何使用matplotlib繪制動態圓錐曲線

在Python中,繪制動圖需要用到matplotlib中的animation包,其調用方法以及接下來要用到的參數為

ani = animation.FuncAnimation(fig, func, frames, interval)

其中fig為繪圖窗口,func為繪圖函數,其返回值為圖像,frames為迭代參數,如果為整型的話,其迭代參數則為range(frames)

橢圓

為了繪圖方便,橢圓的參數方程為

Python編程如何使用matplotlib繪制動態圓錐曲線

Python編程如何使用matplotlib繪制動態圓錐曲線

代碼為:

# 這三個包在后面的程序中不再復述
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
a,b,c = 5,3,4
fig = plt.figure(figsize=(12,9))
ax = fig.add_subplot(autoscale_on=False, 
    xlim=(-a,a),ylim=(-b,b))
ax.grid()
line, = ax.plot([],[],'o-',lw=2)
trace, = ax.plot([],[],'-', lw=1)
theta_text = ax.text(0.02,0.85,'',transform=ax.transAxes)
textTemplate = '''theta = %.1f°\n
lenL = %.1f, lenR = %.1f\n
lenL+lenR = %.1f'''
xs,ys = [], []
def animate(i):
    if(i==0):
        xs.clear()
        ys.clear()
    theta = i*0.04
    x = a*np.cos(theta)
    y = b*np.sin(theta)
    xs.append(x)
    ys.append(y)
    line.set_data([-c,x,c], [0,y,0])
    trace.set_data(xs,ys)
    lenL = np.sqrt((x+c)**2+y**2)
    lenR = np.sqrt((x-c)**2+y**2)
    theta_text.set_text(textTemplate % 
        (180*theta/np.pi, lenL, lenR, lenL+lenR))
    return line, trace, theta_text
ani = animation.FuncAnimation(fig, animate, 157, 
    interval=5, blit=True)
ani.save("ellipse.gif")
plt.show()

雙曲線

雙曲線的參數方程為

Python編程如何使用matplotlib繪制動態圓錐曲線

設 a = 4 , b = 3 , c = 5 則代碼如下

a,b,c = 4,3,5
fig = plt.figure(figsize=(12,9))
ax = fig.add_subplot(autoscale_on=False, 
    xlim=(-c,16),ylim=(-12,12))
ax.grid()
line, = ax.plot([],[],'o-',lw=2)
trace, = ax.plot([],[],'-', lw=1)
theta_text = ax.text(0.01,0.85,'',
    transform=ax.transAxes)
textTemplate = '''t = %.1f\n
lenL = %.1f, lenR = %.1f\n
lenL-lenR = %.1f'''
xs,ys = [],[]
def animate(t):
    if(t==-3):
        xs.clear()
        ys.clear()
    x = a*np.cosh(t)
    y = b*np.sinh(t)
    xs.append(x)
    ys.append(y)
    line.set_data([-c,x,c], [0,y,0])
    trace.set_data(xs,ys)
    lenL = np.sqrt((x+c)**2+y**2)
    lenR = np.sqrt((x-c)**2+y**2)
    theta_text.set_text(textTemplate % 
        (t, lenL, lenL, lenL-lenR))
    return line, trace, theta_text
frames = np.arange(-3,3,0.05)
ani = animation.FuncAnimation(fig, animate, 
    frames, interval=5, blit=True)
ani.save("hyperbola.gif")

plt.show()

Python編程如何使用matplotlib繪制動態圓錐曲線

拋物線

Python編程如何使用matplotlib繪制動態圓錐曲線

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
a,b,c = 4,3,5
p = 1
fig = plt.figure(figsize=(12,9))
ax = fig.add_subplot(autoscale_on=False, 
    xlim=(-0.6,4.5),ylim=(-3,3))
ax.grid()
ax.plot([-p/2,-p/2],[-5,5],'-',lw=2)
line, = ax.plot([],[],'o-',lw=2)
trace, = ax.plot([],[],'-', lw=1)
theta_text = ax.text(0.05,0.85,'',
    transform=ax.transAxes)
textTemplate = '''y = %.1f\n
lenL = %.1f, lenF = %.1f\n
lenL-lenF = %.1f'''
xs,ys = [],[]
def animate(y):
    if(y==-3):
        xs.clear()
        ys.clear()
    x = y**2/p/2
    xs.append(x)
    ys.append(y)
    line.set_data([-p,x,p/2], [y,y,0])
    trace.set_data(xs,ys)
    lenL = x+p/2
    lenF = np.sqrt((x-p/2)**2+y**2)
    theta_text.set_text(textTemplate % 
        (y, lenL, lenF, lenL-lenF))
    return line, trace, theta_text
frames = np.arange(-3,3,0.1)
ani = animation.FuncAnimation(fig, animate, 
    frames, interval=5, blit=True)
ani.save("parabola.gif")
plt.show()

Python編程如何使用matplotlib繪制動態圓錐曲線

極坐標方程

圓錐曲線在極坐標系下有相同的表達式,即

Python編程如何使用matplotlib繪制動態圓錐曲線

matplotlib中,極坐標圖像需要通過projection='polar'來標識,其代碼為

p = 2
fig = plt.figure(figsize=(12,9))
ax = fig.add_subplot(autoscale_on=False, projection='polar')
ax.set_rlim(0,8)
trace, = ax.plot([],[],'-', lw=1)
theta_text = ax.text(0.05,0.95,'',transform=ax.transAxes)
textTemplate = 'e = %.1f\n'
theta = np.arange(-3.1,3.2,0.1)
def animate(e):
    rho = p/(1-e*np.cos(theta))
    trace.set_data(theta,rho)
    theta_text.set_text(textTemplate % e)
    return trace, theta_text
frames = np.arange(-2,2,0.1)
ani = animation.FuncAnimation(fig, animate, 
    frames, interval=100, blit=True)
ani.save("polar.gif")
plt.show()

Python編程如何使用matplotlib繪制動態圓錐曲線

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Python編程如何使用matplotlib繪制動態圓錐曲線”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

福鼎市| 嘉兴市| 鄂托克前旗| 乐清市| 宜良县| 镇康县| 蒙山县| 丹凤县| 紫金县| 万载县| 若羌县| 鹤峰县| 卢龙县| 柞水县| 清水河县| 汉寿县| 曲靖市| 汾西县| 内乡县| 英吉沙县| 新邵县| 师宗县| 罗甸县| 治多县| 沙湾县| 和硕县| 南江县| 阳江市| 公安县| 富裕县| 务川| 临沭县| 运城市| 高雄市| 莱芜市| 葫芦岛市| 阳原县| 德钦县| 建宁县| 黄龙县| 乌拉特中旗|