|
|
[求助]
gnuplot中插页(图片)无法完全显示。请问如何将图片缩小,以使得可以显示?
大家好,
问题是这样。一副图像, 我想加入一个图片插页。当插页为一个函数时,可以正常显示(如图中左边插页);但是加入一幅图片时,因为限制了插页的尺寸,不知是不是图片太大, 只显示了局部(如附图右边插页). 附gnuplot命令
请问如何控制图片的大小使得这个图片插页能显示完全?搜索未得,请大家帮忙. 谢~。
圣诞快乐
Gang
---------------
set term postscript eps color solid linewidth 2 "Times-New-Roman" 24 enhanced
set out 'multi_s.eps'
set xlabel "r(m)" font "Times-New-Roman, 24"
set xrange [0 : 5]
set xtics 0.4
set mxtics 2
set ylabel "E "
set yrange [-0.6:4]
set ytics 1
set mytics 2
set key right top
set size 1.0,1.0 #This sets the size of the total figure.
set origin 0.0,0.0
set multiplot
set origin 0.0,0.0 #This is the bigger plot.
set size 1,1
set key right top
#set title ' Free energy'
plot [2.4 : 4.4] "pp_s.dat" u 1:3 w l lw 2 notitle ,\
"pp_s.dat" u 1:3:4 w yerrorbars ls 1 notitle
# The second graph
set origin 0.2,0.5 #This is where the origin of the inset lies, the coordinate is the relative
set size 0.20,0.35 #size of the bigger plot, not the absolute value.
set border # with border
unset xlabel; unset ylabel; unset title; set nokey; unset xtics; unset ytics
plot [2.4: 4.4] "pp_s.dat" u 1:3 w l lw 2 notitle
# The third graph
set origin 0.7,0.4 #This is where the origin of the inset lies, the coordinate is the relative
set size 0.20,0.35 #size of the bigger plot, not the absolute value.
unset border
unset xlabel; unset ylabel; unset title; set nokey; unset xtics; unset ytics
plot "mei.jpg" binary filetype=jpg with rgbimage notitle
set nomultiplot
set output
set term wxt
![gnuplot中插页(图片)无法完全显示。请问如何将图片缩小,以使得可以显示?]()
multi_s.png |
|