1
我用Gnuplot繪製了幾個3D圖形,用Google的漂亮繪圖工具進行了一些實驗。我喜歡使用Google工具的一件事是圍繞表面繪製的「邊界框」,這使我更容易看到尺寸。Gnuplot:圍繞3d表面繪製邊界框
有沒有什麼辦法在Gnuplot上繪製這個邊界框?
例如,該功能:z = (15 - x*y)/(100 - x)
與谷歌畫在:https://www.google.es/search?q=z+%3D+(15+-+xy)%2F(100-x)&aq=f&oq=z+%3D+(15+-+xy)%2F(100-x)
爲gnuplot的一個等價的腳本:
set grid set xrange [-10:10] set yrange [-10:10] set zrange [-0.7:1] set isosamples 100 set pm3d set hidden3d set ticslevel 0.0 set view 60, 100 splot (15 - x*y)/(100 - x)
產生以下情節:
在此先感謝