added gnuplot size option

This commit is contained in:
Dima Kogan 2010-05-12 23:00:39 -07:00
parent df53ae9067
commit 15b8bc7576

View File

@ -86,6 +86,8 @@ As an example, if line 3 of the input is "0 9 1 20"
--y2 xxx Plot the data with this index on the y2 axis. These are --y2 xxx Plot the data with this index on the y2 axis. These are
0-indexed 0-indexed
--size xxx Gnuplot size option
--hardcopy xxx If not streaming, output to a file specified here. Format --hardcopy xxx If not streaming, output to a file specified here. Format
inferred from filename inferred from filename
@ -144,6 +146,7 @@ GetOptions(\%options,
"y2min=f", "y2min=f",
"y2max=f", "y2max=f",
"y2=i@", "y2=i@",
"size=s",
"hardcopy=s", "hardcopy=s",
"maxcurves=i", "maxcurves=i",
"monotonic!", "monotonic!",
@ -287,6 +290,8 @@ sub mainThread {
print(PIPE "set y2label \"" . $options{"y2label"} . "\"\n") if $options{"y2label"}; print(PIPE "set y2label \"" . $options{"y2label"} . "\"\n") if $options{"y2label"};
print(PIPE "set title \"" . $options{"title" } . "\"\n") if $options{"title"}; print(PIPE "set title \"" . $options{"title" } . "\"\n") if $options{"title"};
print(PIPE "set size \"" . $options{size} . "\"\n") if defined $options{"size"};
# For the specified values, set the legend entries to 'title "blah blah"' # For the specified values, set the legend entries to 'title "blah blah"'
if($options{"legend"}) if($options{"legend"})
{ {