octave-maintainers
[Top][All Lists]
Advanced

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

reversal of axis in spy


From: David Bateman
Subject: reversal of axis in spy
Date: Mon, 07 May 2007 18:21:03 +0200
User-agent: Thunderbird 1.5.0.7 (X11/20060921)

With the changes for the graphic handles, spy had its y axis reversed.
This patch puts things back to normal..

D.
Index: scripts/sparse/spy.m
===================================================================
RCS file: /usr/local/cvsroot/octave/scripts/sparse/spy.m,v
retrieving revision 1.6
diff -c -r1.6 spy.m
*** scripts/sparse/spy.m        23 Mar 2007 21:20:21 -0000      1.6
--- scripts/sparse/spy.m        7 May 2007 16:17:09 -0000
***************
*** 35,40 ****
      plot (j, i, ".");
    endif
  
!   axis ([0, n+1, 0, m+1]);
  
  endfunction
--- 35,40 ----
      plot (j, i, ".");
    endif
  
!   axis ([0, n+1, m+1, 0]);
  
  endfunction

reply via email to

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