I’m running Octave version 3.2.0 installed from a MacOS X ready to run binary. It’s set up with Gnuplot version 4.2.5 from the same binary distribution. I’m using AquaTerm as my display app and have the following lines in the Gnuplot start script
DYLD_FRAMEWORK_PATH="${ROOT}/lib:${DYLD_FRAMEWORK_PATH}" \
open "${ROOT}/lib/AquaTerm.app"
When I use the plot command in Octave, the plot appears as expected, but when I then type in
hold on
xlabel(‘x’)
ylabel(‘y’)
title(‘title’)
The labels generally don’t appear or are cutoff. It looks like the labels are probably plotting outside of the AquaTerm window. The old click-and-expand approach of making the window bigger just makes the plot with its truncated boundaries bigger—still no labels.
Any idea what I need to do to extend the plotting space visible in AquaTerm?