hanamilani wrote:
hi,
the output of the following gnuplot commands are as enclosed. as you can see the although the plotting pf sing (x-1) should follw sin(x) in column one, it has been shifted to column 2. "aaaaa...aaaa" should be the ylabel of the first colum boxes.
gnuplot> set terminal postscript enhanced
gnuplot> set output 'out.eps'
gnuplot> set xrange [-1:1]
gnuplot> set yrange [-1:1]
gnuplot> set multiplot layout 3,2
multiplot> plot sin(x)
multiplot> set label "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" rotate by 90 at -1.5,0
multiplot> plot sin(x-1)
multiplot> unset label
multiplot> plot sin(x-2)
multiplot> plot cos(x)
multiplot> plot cos(x-1)
multiplot> plot cos(x-2)
multiplot> unset multiplot
Please let me know if I can use ylabel with proper offset instead of label. (I have tried it but the size of the boxes differ from each other)
Regards,