|
| From: | Avinoam Kalma |
| Subject: | [Octave-bug-tracker] [bug #45087] image package: rangefilt does incorrect |
| Date: | Tue, 12 May 2015 20:45:31 +0000 |
| User-agent: | Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 |
Follow-up Comment #1, bug #45087 (project octave):
At the beginning of rangefilt.m
if (! isnumeric (I) || ! islogical (I))
error ("rangefilt: I must be a numeric or logical array");
endif
It seems that it should be && and not ||, or
if (!( isnumeric (I) || islogical (I)))
_______________________________________________________
Reply to this item at:
<http://savannah.gnu.org/bugs/?45087>
_______________________________________________
Message sent via/by Savannah
http://savannah.gnu.org/
| [Prev in Thread] | Current Thread | [Next in Thread] |