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

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

[Octave-bug-tracker] [bug #41160] subplot( 1 , N, P) and legend() proble


From: Daisuke TAKAGO
Subject: [Octave-bug-tracker] [bug #41160] subplot( 1 , N, P) and legend() problem
Date: Thu, 09 Jan 2014 06:26:56 +0000
User-agent: Mozilla/5.0 (X11; Linux i686; rv:25.0) Gecko/20100101 Firefox/25.0

URL:
  <http://savannah.gnu.org/bugs/?41160>

                 Summary: subplot( 1 ,N,P) and legend() problem
                 Project: GNU Octave
            Submitted by: takago
            Submitted on: 2014年01月09日 06時26分55秒
                Category: Plotting with OpenGL
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Incorrect Result
                  Status: None
             Assigned to: None
         Originator Name: Daisuke TAKAGO
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: 3.8.0
        Operating System: GNU/Linux

    _______________________________________________________

Details:

I found a bug about combination of legend() and subplot( 1 ,N,P). 



# EXAMPLE1 (Not Works Well)
close all;subplot(1,3,2);plot(1:100);legend 'A';subplot(1,3,2);
( the first plot is erased )

# EXAMPLE2 ( Works Well) 
close all;subplot(3,1,2);plot(1:100);legend 'A';subplot(3,1,2);

# EXAMPLE3 ( Works Well) 
close all;subplot(1,3,2);plot(1:100);subplot(1,3,2);
close all;subplot(3,1,2);plot(1:100);subplot(3,1,2);





    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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