octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: more graphics changes - subplots overlap


From: Søren Hauberg
Subject: Re: more graphics changes - subplots overlap
Date: Wed, 21 Mar 2007 22:02:07 +0100
User-agent: Thunderbird 1.5.0.10 (X11/20070307)

David Bateman skrev:
[snip]
It fact even just

    figure(1)
    x=1:0.01:10;
    xlabel("X");
    title ("Sin(x)");
    ylabel("Y");
    plot (x,sin(x));

is sufficient to show the issue...
Using matlab 7.3.0.298 (R2006b) I get the following

  figure(1)         % A window appears.
  x=1:0.01:10;
  xlabel('X');      % The letter 'X' appears under the horizontal axis.
  title('sin(x)')   % The title appears. Both the title and the x-label
                    % is visible.
  ylabel('Y');      % The letter 'Y' appears. Both the title, the
                    % x-label, and the y-label is visible.
  plot(x, sin(x))   % The plot appears, but x- and y-labels disappears
                    % along with the title.

In Octave I get the following

  figure(1)         % A window appears.
  x=1:0.01:10;
  xlabel('X');      % Nothing happens
  title('sin(x)')   % Nothing happens.
  ylabel('Y');      % Nothing happens
  plot(x, sin(x))   % The plot appears without the x- and y-labels
                    % and the title.

So the current behavior seems to be fairly close to compatible.

Søren


reply via email to

[Prev in Thread] Current Thread [Next in Thread]