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

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

[Octave-bug-tracker] [bug #31264] flipping image using x/ydata


From: Ben Abbott
Subject: [Octave-bug-tracker] [bug #31264] flipping image using x/ydata
Date: Wed, 06 Oct 2010 13:42:35 +0000
User-agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4; en-US) AppleWebKit/534.3 (KHTML, like Gecko) Chrome/6.0.472.63 Safari/534.3

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

                 Summary: flipping image using x/ydata
                 Project: GNU Octave
            Submitted by: bpabbott
            Submitted on: Wed 06 Oct 2010 09:42:34 AM EDT
                Category: None
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Incorrect Result
                  Status: None
             Assigned to: None
         Originator Name: Ben Abbott
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: dev
        Operating System: Mac OS

    _______________________________________________________

Details:

For compatibility with Matlab, the following should produce two images with
the second flipped left-right

xdata = [-5, 5];
ydata = [-5, 5];
cdata = 1 ./ hilb (11);
figure (1)
clf
image (xdata, ydata, cdata)
figure (2)
clf
image (fliplr (xdata), ydata, cdata)

The image in figure(2) should be the same as ...

figure (3)
clf
image (x, y, fliplr (cdata))






    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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