2016-03-04 212 views
0

我想做一個3d情節,我希望每個點都與我選擇的顏色/形狀/陰影。事實是,我想使用here的調色板。gnuplot:3d圓形散點圖

比方說我的數據是這樣的 -

0 0 0 
0 0 1 
0 1 0 
0 1 1 
1 0 0 
1 0 1 
1 1 0 
1 1 1 

和我的gnuplot的命令看起來是這樣的 -

set style fill transparent solid 0.75 noborder 
set style circle radius screen 0.01 
splot "data.out" with circles linecolor rgb "blue" 

和我得到這個情節 -

enter image description here

正如你所看到的那樣,沒有圈子,每個點都是+

如何繪製圓圈?

回答

2

要與圈畫需要

splot "data.out" linecolor "blue" pointtype 6 

要獲得圈試型6或7圈的大小可以通過添加選項pointsize 2改變(數量爲大小的值)