3.0.4 call for patches

Søren Hauberg soren at hauberg.org
Fri Dec 12 16:12:00 CST 2008


fre, 12 12 2008 kl. 16:42 -0500, skrev Ben Abbott:
> Line 230 of contourf is
> 
> if (isvector (X) || isvector (Y) && any (size (X) != size(Y)))
> 
> Replace that with
> 
> if ((isvector (X) || isvector (Y)) && any (size (X) != size(Y)))
> 
> and the problem should be fixed (provided I understand the intended logic).

Instead of 'any (size (X) != size (Y))' it's probably better to use
'size_equal (X, Y)'.

Søren



More information about the Help-octave mailing list