octave-bug-tracker
[Top][All Lists]
Advanced

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

[Octave-bug-tracker] [bug #45823] Empty plot after figure command (FLTK


From: Rik
Subject: [Octave-bug-tracker] [bug #45823] Empty plot after figure command (FLTK only)
Date: Tue, 25 Aug 2015 17:04:01 +0000
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:35.0) Gecko/20100101 Firefox/35.0

Update of bug #45823 (project octave):

                Priority:              5 - Normal => 3 - Low                
                  Status:                    None => Confirmed              
                 Summary: Empty plot after figure command => Empty plot after
figure command (FLTK only)

    _______________________________________________________

Follow-up Comment #1:

Confirmed.  It's an annoyance, and probably difficult to actually track down
and fix.

Here are some workarounds:

1) Use 'refresh' on the command line following the plot command.

2) Change the comma-separated line 'figure, plot (x,x)' in to two separate
commands separated by a newline rather than a comma

figure
plot (x,x)


3) Put the command in an m-file and run the m-file.

Contents of tstmfile.m


x = linspace (0,1);
figure, plot (x,x)


4) Switch to a different toolkit such as gnuplot rather than FLTK.

5) Start with 'octave --no-gui'.  This has a CLI interface, but the default
toolkit is qt rather than FLTK.


    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?45823>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

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