第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

matplotlib 中的動(dòng)畫箭頭

matplotlib 中的動(dòng)畫箭頭

墨色風(fēng)雨 2023-08-08 15:56:41
我在 matploltib 中對(duì)一行進(jìn)行了動(dòng)畫處理,代碼的輸出如下所示:但我想要的是代碼應(yīng)該繪制一個(gè)箭頭(即行尾的箭頭),而不是這一行,這是代碼片段:import numpy as npimport matplotlib.pyplot as pltimport matplotlib.animation as animationfig, ax = plt.subplots(figsize=(12, 8))ax.set(xlim=(0, 104), ylim=(0, 68))x_start, y_start = (50, 35)x_end, y_end = (90, 45)x = np.linspace(x_start, x_end, 50)y = np.linspace(y_start, y_end, 50)line, = ax.plot(x, y)def animate(i):? ? line.set_data(x[:i], y[:i])? ? return line,ani = animation.FuncAnimation(? ? fig, animate, interval=20, blit=True, save_count=50)plt.show()我應(yīng)該在代碼中添加/更改什么,以便我可以在輸出中獲得箭頭而不是行?
查看完整描述

2 回答

?
縹緲止盈

TA貢獻(xiàn)2041條經(jīng)驗(yàn) 獲得超4個(gè)贊

回答

您可以用來(lái)ax.arrow繪制箭頭。
請(qǐng)注意,您應(yīng)該在每次迭代時(shí)使用 清除繪圖ax.cla()并調(diào)整軸限制ax.set()。

代碼

import numpy as np

import matplotlib.pyplot as plt

import matplotlib.animation as animation


fig, ax = plt.subplots(figsize=(12, 8))

ax.set(xlim=(0, 104), ylim=(0, 68))


x_start, y_start = (50, 35)

x_end, y_end = (90, 45)


N = 50

x = np.linspace(x_start, x_end, N)

y = np.linspace(y_start, y_end, N)


def animate(i):

? ? ax.cla()

? ? ax.arrow(x_start, y_start,

? ? ? ? ? ? ?x[i] - x_start, y[i] - y_start,

? ? ? ? ? ? ?head_width = 2, head_length = 2, fc = 'black', ec = 'black')

? ? ax.set(xlim = (0, 104), ylim = (0, 68))


ani = animation.FuncAnimation(fig, animate, interval=20, frames=N, blit=False, save_count=50)


plt.show()


查看完整回答
反對(duì) 回復(fù) 2023-08-08
?
長(zhǎng)風(fēng)秋雁

TA貢獻(xiàn)1757條經(jīng)驗(yàn) 獲得超7個(gè)贊

您只需將線函數(shù)更改為箭頭函數(shù)即可。但請(qǐng)注意,您首先需要計(jì)算箭頭的終點(diǎn),因?yàn)楦鶕?jù)文檔,您只能指定長(zhǎng)度 dx,dy。通過(guò)使用畢達(dá)哥拉斯,起點(diǎn)為x[0]y[0],為轉(zhuǎn)換后的終點(diǎn)。dxdy

我認(rèn)為你現(xiàn)在可以自己解決這個(gè)問(wèn)題。


查看完整回答
反對(duì) 回復(fù) 2023-08-08
  • 2 回答
  • 0 關(guān)注
  • 174 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)