I am using Octave for all my calculations and plotting. By telling Octave
graphics_toolkit gnuplot
I can create a *.tex-document by
print -dtikz filename.tex
Which I can then use by
\input{filename}
In combination with
\usepackage{gnuplot-lua-tikz}
\usepackage{graphicx}
\usepackage{pgfsys}
\usepackage{keyval}
\usepackage{xcolor}
\usepackage{tikz}
Only problem is the size of the graph. During my long path to the above findings, I remember an error message saying that gnuplot uses a standard graph size of 560 by 420 pt. In LaTeX, I usually use something like
width = 0.9\textwidth
for non-*.tex graphs and I would like my plots to be approximately that large, because I would not like to fumble around with scaling factors or other parameters. That can sometimes mess up the relative positions of the single graphics items.
How do I change the plot size that Gnuplot creates from Octave?