Corrects a bug related to the number of arguments passed to the static m-files

time-shift
Ferhat Mihoubi 2011-09-16 17:44:59 +02:00
parent 9ab9288b9f
commit 3c818378fe
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ for it_=start:incr:finish
[r, y, g1, g2, g3] = feval(fname, y, x, params, ...
steady_state, it_, 0);
else
[r, y, g1] = feval(fname, y, x, params, steady_state);
[r, y, g1] = feval(fname, y, x, params);
end;
if max(abs(r)) >= options_.solve_tolf
[dx,flag1] = bicgstab(g1,-r,1e-7,Blck_size,L1,U1);