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

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

[Octave-bug-tracker] [bug #36248] "axis image" bug


From: Daisuke TAKAGO
Subject: [Octave-bug-tracker] [bug #36248] "axis image" bug
Date: Thu, 19 Apr 2012 02:39:27 +0000
User-agent: Mozilla/5.0 (X11; Linux i686; rv:11.0) Gecko/20100101 Firefox/11.0

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

                 Summary: "axis image" bug
                 Project: GNU Octave
            Submitted by: takago
            Submitted on: 2012年04月19日 02時39分27秒
                Category: Plotting with OpenGL
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Incorrect Result
                  Status: None
             Assigned to: None
         Originator Name: 
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: dev
        Operating System: GNU/Linux

    _______________________________________________________

Details:

I just happend to find a bug about drawing image. 
It occurred under using both "imagesc(), image()" and "axis image" routines.
Apparently, the matrix size of 501xN is not drawn.

%% CODE EXAMPLE %%

N=200; % any value
imagesc(rand(499,N));axis image; % OK
imagesc(rand(500,N));axis image; % OK
imagesc(rand(501,N));axis image; % BUG(NOT DRAWN)
imagesc(rand(502,N));axis image; % OK
imagesc(rand(503,N));axis image; % OK

imagesc(rand(499,N));axis equal; % OK
imagesc(rand(500,N));axis equal; % OK
imagesc(rand(501,N));axis equal; % OK
imagesc(rand(502,N));axis equal; % OK
imagesc(rand(503,N));axis equal; % OK

imagesc(rand(499,N)); % OK
imagesc(rand(500,N)); % OK
imagesc(rand(501,N)); % OK
imagesc(rand(502,N)); % OK
imagesc(rand(503,N)); % OK




    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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