2016-03-09 98 views
1

Im和我是新有了它,我希望得到一個圖表,3D點,我的數據文件是:gnuplot的,如何使用的gnuplot生成3D點圖

2195.375 -1824.636 -8.535 
2204.789 -1830.72 -798.447 
2215.166 -1837.398 -766.727 
2226.448 -1844.699 -735.453 
2238.655 -1852.604 -704.629 
2251.734 -1861.026 -674.418 
2265.695 -1870.098 -644.702 
2280.514 -1879.692 -615.603 
2296.172 -1889.872 -587.158 
2312.677 -1900.587 -559.324 
2329.904 -1911.829 -532.302 
2347.976 -1923.566 -505.93 
2366.791 -1935.812 -480.349 
2386.336 -1948.566 -455.535 
2406.598 -1961.776 -431.624 
2427.574 -1975.432 -408.455 
2449.22 -1989.468 -386.209 

我tryed與: splot 'Escritorio/EtapaRotacion_MEDICIONES.dat'

有一種情況的數據是,我得到這個錯誤:

warning: No usable data in this plot to auto-scale axis range 
                ^
All points z value undefined 
+2

它對我來說工作正常。您可能以前已經設置了軸範圍。在繪圖之前嘗試運行'reset'。 – Matthew

回答

1

你可以用這個命令繪製的要點:

splot "Escritorio/EtapaRotacion_MEDICIONES.dat" with dots 

您還可以使用所有其他gnuplot命令和選項來修改圖;例如

splot "Escritorio/EtapaRotacion_MEDICIONES.dat" with dots lc rgb "blue" 

用藍點進行繪圖。