On 10 Mar 2010, at 11:14, David Grundberg wrote:

> [email protected] wrote:
>> Hi
>>
>> I'm the developer of the package and the error occures
>> in the line "error(nargchk(1,1,nargin))".
>>
>> I will wright a question to the forum, because I read this  
>> sometimes more ..
>> I'm using octave windows version 3.2.2
>>
>> regards
>>
>> Michael
>>
>
> The error ("") bug was fixed in 2009-09-30. IIRC, it's in the 3.2
> series. Try upgrading.
>
> David

or, if for some reason you cannot update, you can temporarily work  
aroun the bug by changing the line

>> error(nargchk(1,1,nargin))

to something like (untested)

tmp =nargchk(1,1,nargin)
if (!isempty (tmp))
error (tmp);
endif

c.




------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Octave-dev mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/octave-dev

Reply via email to