감동, 마음이 움직이는 것
[gnuplot] how to drwo a single point 본문
Tips (Utility, Computer Language, and etc.)
[gnuplot] how to drwo a single point
Struggler J. 2016. 9. 20. 18:35There are so many different ways to drow a point.
http://www.gnuplotting.org/plotting-single-points/
http://stackoverflow.com/questions/19452516/add-a-single-point-at-an-existing-plot
(1) Use label
I think the most simple way is usage of empty label.
set label at xPos, yPos, zPos "" point pointtype 7 pointsize 2
(2) Use standard input "-"
(3) Use special filename "+":
see an another example (it is convenient for discrete sampling)
(4) Use object
set object circle at first -5,5 radius char 0.5 \
fillstyle empty border lc rgb '#aa1100' lw 2
set object circle at graph 0.5,0.9 radius char 1 arc [0:-90] \
fillcolor rgb 'red' fillstyle solid noborder
set object rectangle at screen 0.6, 0.2 size char 1, char 0.6 \
fillcolor rgb 'blue' fillstyle solid border lt 2 lw 2
plot x
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[numerical algorithm] The 1D diffusion equation (0) | 2016.09.29 |
---|---|
[gnuplot] print fitting parameter (0) | 2016.09.20 |
[gawk] float calculation for awk (0) | 2016.09.19 |
[sort] using command line and c++ function (0) | 2016.09.19 |
[linux] awk (0) | 2016.09.19 |