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

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

matplotlib:僅將標(biāo)記應(yīng)用于起點或終點?

matplotlib:僅將標(biāo)記應(yīng)用于起點或終點?

回首憶惘然 2022-10-18 17:17:07
我正在使用 matplotlib,我正在努力處理樣式屬性。如何僅將標(biāo)記添加到 3D 線的起點或終點而不是兩側(cè)?
查看完整描述

1 回答

?
料青山看我應(yīng)如是

TA貢獻1772條經(jīng)驗 獲得超8個贊

markevery繪圖時使用參數(shù)。

圖庫(版本 2.2.5)中 的參數(shù)曲線示例中的示例。

import matplotlib as mpl

from mpl_toolkits.mplot3d import Axes3D

import numpy as np

import matplotlib.pyplot as plt


plt.rcParams['legend.fontsize'] = 10


fig = plt.figure()

ax = fig.gca(projection='3d')


# Prepare arrays x, y, z

theta = np.linspace(-4 * np.pi, 4 * np.pi, 100)

z = np.linspace(-2, 2, 100)

r = z**2 + 1

x = r * np.sin(theta)

y = r * np.cos(theta)


l = ax.plot(x, y, z, marker='o', label='parametric curve both ends', markevery=[0,-1])

l = ax.plot(x+1, y+1, z, 'r', marker='o', label='parametric curve one end', markevery=[0])

ax.legend()


plt.show()

plt.close()

我使用了 2.2.5 版本的示例,因為我沒有安裝 3.2。 在3.something - 3.2 示例鏈接中更改 3d 軸。


Axes.plot markevery 參數(shù)


查看完整回答
反對 回復(fù) 2022-10-18
  • 1 回答
  • 0 關(guān)注
  • 141 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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