You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that the inputs check in the matlab function "gpufit_constrained" is incorrect. When user_info is supplied, it is ignored because the condition "if nargin < 12" should be "if nargin < 11" in order to not initialize the user_info with an empty array. The rest of the nargin checks need to be corrected as well by substracting one to the nargin value check. After these corrections the function works correctly.
The text was updated successfully, but these errors were encountered:
I noticed that the inputs check in the matlab function "gpufit_constrained" is incorrect. When user_info is supplied, it is ignored because the condition "if nargin < 12" should be "if nargin < 11" in order to not initialize the user_info with an empty array. The rest of the nargin checks need to be corrected as well by substracting one to the nargin value check. After these corrections the function works correctly.
The text was updated successfully, but these errors were encountered: