Hello everyone,
im trying to have 4 x-y axis in the results of multiplot. I want to have a
standard background in each x-y axis.
Unfortunatelly im getting the error "
plot "Floor2.png" binary filetype=png w rgbimage
^
"multiex.txt", line 12: Unsupported file type
"
You can see my gnuplot script below
set style function lines
set size 1.0, 1.0
set origin 0.0, 0.0
set output "map.png"
set multiplot
set size 0.5,0.5
set origin 0.0,0.5
set grid
unset key
set angles radians
set samples 250
plot "Floor2.png" binary filetype=jpg w rgbimage
# Plot 1
set title "Stats 1"
set xlabel "x"
set ylabel "y"
set xrange [0:46]
set yrange [0:31]
plot "stats4.dat" w p pt 7 lc rgb"#00FF00" notitle
plot "stats.dat" w p pt 7 lc rgb"#ff0000" notitle
# Plot 2
set size 0.5,0.5
set origin 0.0,0.0
set title "Stats 2"
set ylabel "y"
set xrange [0:46]
set yrange [0:31]
plot "stats4.dat" w p pt 7 lc rgb"#00FF00" notitle
plot "stats.dat" w p pt 7 lc rgb"#ff0000" notitle
# Plot 3
set size 0.5,0.5
set origin 0.5,0.5
set title "Stats 3"
set ylabel "y"
set xlabel "x"
set xrange [0:46]
set yrange [0:31]
plot "stats4.dat" w p pt 7 lc rgb"#00FF00" notitle
plot "stats.dat" w p pt 7 lc rgb"#ff0000" notitle
#
# Plot 4
set origin .5,0.
set title "Stats 4"
set xrange [0:46]
set yrange [0:31]
plot "stats4.dat" w p pt 7 lc rgb"#00FF00" notitle
plot "stats.dat" w p pt 7 lc rgb"#ff0000" notitle
unset multiplot
pause mouse any "Any key or mouse will terminate"
can someone help please?
Thanx :)
--
View this message in context: http://old.nabble.com/Image-as-background-in-multiplot-tp34257136p34257136.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
|