2012-09-06 50 views
0

我想在我的surfaceplot的表面上創建一個網格,現在我知道線框不起作用,而網格命令完全是其他的東西。但我似乎並沒有能夠得到電網這樣enter image description here而是格柵像這樣enter image description here和改變rstride和cstride只有使它看起來像現代藝術: enter image description herepython meshgrid的大小和線條的厚度

這裏是我使用

繪圖命令
fig = plt.figure() 
ax = fig.add_subplot(111,projection="3d") 

plot = ax.plot_surface(x,y,z, rstride=1, cstride=1, cmap=cm.jet, shade=True, 
         linewidth=1, antialiased=False) 

回答

1

如果你對自己想要達到的目標更清楚,這將有所幫助。你的第二個陰謀中的電網對我來說看起來很好 - 你期望什麼?如何剛好你想要網格出現?

你說你對改變rstridecstride參數的值的結果並不滿意,但是你沒有說你正在改變這些參數。你讀過關於這些參數的文檔嗎?

此外,請發佈minimal, self-contained working example of your code,因爲繪製的網格將取決於您構建數據的方式(每個維度中有多少個點等)。不要讓我們去看看你的previous questions

無論如何,咆哮了。只要加倍rstridecstride值給我

enter image description here

沒有問題的THRID身影。上述更像你以後的事情嗎?