help-octave
[Top][All Lists]
Advanced

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

Re: 3.0.4 call for patches


From: Søren Hauberg
Subject: Re: 3.0.4 call for patches
Date: Fri, 12 Dec 2008 23:12:00 +0100

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



reply via email to

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