I know the command to plot circle in gnuplot:
plot 'circle.txt' using 1:2:3 with circles
Suppose if circle.txt
contains n
lines and each line contains (centerX
, centerY
, radius
) of different circles, e.g.:
#x y radius
0 0 1
1 1 2
2 2 3
How can I generate n
images containing n
different circles - one image per line?