help-octave
[Top][All Lists]
Advanced

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

Re: 'sqp' error state equal to 0 - what does it mean? [SOLVED]


From: coccoinomane
Subject: Re: 'sqp' error state equal to 0 - what does it mean? [SOLVED]
Date: Fri, 16 Apr 2010 09:02:37 -0800 (PST)

I think I found out what it is happening. This 'if' block (line 399):
"""
if (t2 && t3 && max ([t0; t1; t4]) < tol)
break;
endif
"""
in sqp.m should be:
"""
if (t2 && t3 && max ([t0; t1; t4]) < tol)
info = 101;
break;
endif
"""
right before the 'break' statement.

I submitted the bug report to the bug tracker.

Cheers,

Guido
-- 
View this message in context: 
http://n4.nabble.com/sqp-error-state-equal-to-0-what-does-it-mean-tp1838966p2013256.html
Sent from the Octave - General mailing list archive at Nabble.com.


reply via email to

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