Index: scripts/plot/pcolor.m =================================================================== RCS file: /cvs/octave/scripts/plot/pcolor.m,v retrieving revision 1.4 diff -u -r1.4 pcolor.m --- scripts/plot/pcolor.m 10 Dec 2007 06:52:51 -0000 1.4 +++ scripts/plot/pcolor.m 27 Dec 2007 18:03:49 -0000 @@ -38,7 +38,7 @@ c = x; z = zeros (size (c)); [nr, nc] = size (c); - [x, y] = meshgrid (1:nr, 1:nc); + [x, y] = meshgrid (1:nc, 1:nr); elseif (nargin == 3) z = zeros (size (c)); else