本贴会不断更新
1. 逐点指定颜色
假设一个数据文件data有四列数据,前三列为坐标,第四列为颜色
rgb(c)=int(c) splot 'data' using 1:2:3:(rgb($4)) with points lc rgb variable |
其中,rgb是自定义函数
同样,如果只有三列数据,颜色由前三列数据计算,则可以
rgb(r,g,b)=65536*int(r) + 256*int(g) + int(b) splot 'data' using 1:2:3:(rgb($1,$2,$3)) with points lc rgb variable |
阅读(917) | 评论(0) | 转发(0) |