comparison src/fsolve.cc @ 216:e83d64b26659

[project @ 1993-11-13 09:04:18 by jwe]
author jwe
date Sat, 13 Nov 1993 09:11:10 +0000
parents d1c5e5edbf1e
children a99f28f5e351
comparison
equal deleted inserted replaced
215:cf3f13026ff6 216:e83d64b26659
129 return retval; 129 return retval;
130 130
131 ColumnVector x = args[2].to_vector (); 131 ColumnVector x = args[2].to_vector ();
132 132
133 if (nargin > 3) 133 if (nargin > 3)
134 message ("fsolve", "ignoring optional arguments..."); 134 warning ("fsolve: ignoring optional arguments");
135 135
136 if (nargout > 2) 136 if (nargout > 2)
137 message ("fsolve", "can't compute path output yet..."); 137 warning ("fsolve: can't compute path output yet");
138 138
139 NLFunc foo_fcn (fsolve_user_function); 139 NLFunc foo_fcn (fsolve_user_function);
140 NLEqn foo (x, foo_fcn); 140 NLEqn foo (x, foo_fcn);
141 141
142 int info; 142 int info;