萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 編程語言綜合 >> Python實現在matplotlib中兩個坐標軸之間畫一條直線光標的方法

Python實現在matplotlib中兩個坐標軸之間畫一條直線光標的方法

   本文實例講述了Python實現在matplotlib中兩個坐標軸之間畫一條直線光標的方法。分享給大家供大家參考。具體如下:

  看看下面的例子和效果吧

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 # -*- coding: utf-8 -*- from matplotlib.widgets import MultiCursor from pylab import figure, show, np t = np.arange(0.0, 2.0, 0.01) s1 = np.sin(2*np.pi*t) s2 = np.sin(4*np.pi*t) fig = figure() ax1 = fig.add_subplot(211) ax1.plot(t, s1) ax2 = fig.add_subplot(212, sharex=ax1) ax2.plot(t, s2) multi = MultiCursor(fig.canvas,(ax1,ax2),color='r',lw=1) show()

  下面是圖形效果,看隨著光標的移動,在兩個圖之間會畫一條豎線

  這個功能有時還是比較有用的

  希望本文所述對大家的Python程序設計有所幫助。

copyright © 萬盛學電腦網 all rights reserved