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

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

[Octave-bug-tracker] [bug #41128] In fltk backend, subplot(M, N, n) does


From: Daisuke TAKAGO
Subject: [Octave-bug-tracker] [bug #41128] In fltk backend, subplot(M, N, n) does not work in condition 4<M.
Date: Tue, 07 Jan 2014 06:09:21 +0000
User-agent: Mozilla/5.0 (X11; Linux i686; rv:25.0) Gecko/20100101 Firefox/25.0

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

                 Summary: In fltk backend, subplot(M,N,n) does not work in
condition 4<M.
                 Project: GNU Octave
            Submitted by: takago
            Submitted on: 2014年01月07日 06時09分20秒
                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 subplot(M,N,n) does not work in condition 4<M.
I confirmed this problem in both version 3.7.7+ and 3.8.0.
(this occurs only on fltk backend)

# EXAMPLE(work well)
close all; M=1; N=1; for n=1:N*M;subplot(M,N,n); plot(1:100); end
close all; M=2; N=1; for n=1:N*M;subplot(M,N,n); plot(1:100); end
close all; M=3; N=1; for n=1:N*M;subplot(M,N,n); plot(1:100); end
close all; M=4; N=1; for n=1:N*M;subplot(M,N,n); plot(1:100); end
close all; M=4; N=2; for n=1:N*M;subplot(M,N,n); plot(1:100); end
close all; M=4; N=3; for n=1:N*M;subplot(M,N,n); plot(1:100); end
close all; M=4; N=4; for n=1:N*M;subplot(M,N,n); plot(1:100); end
close all; M=4; N=5; for n=1:N*M;subplot(M,N,n); plot(1:100); end
close all; M=4; N=6; for n=1:N*M;subplot(M,N,n); plot(1:100); end

# EXAMPLE(Not work well)
close all; M=5; N=1; for n=1:N*M;subplot(M,N,n); plot(1:100); end
close all; M=6; N=1; for n=1:N*M;subplot(M,N,n); plot(1:100); end
close all; M=7; N=1; for n=1:N*M;subplot(M,N,n); plot(1:100); end

# EXAMPLE(Not work well)
close all; M=5; N=1; for n=1:N*M;subplot(M,N,n); plot(1:100); end
close all; M=5; N=2; for n=1:N*M;subplot(M,N,n); plot(1:100); end
close all; M=5; N=3; for n=1:N*M;subplot(M,N,n); plot(1:100); end
close all; M=5; N=4; for n=1:N*M;subplot(M,N,n); plot(1:100); end





    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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