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
Parameters processing can be unstable depending of the parameters name that the user choose. Now, if we have two different parameters algorithm and algorithmDefault any of them can be randomly choose to be assigned to obj.method. The issue comes from Experiment.m:
elseif strncmpi('algorithm',nueva_linea, 3),
Causes to compare only using the first lines. A quick fix can be to use length(), so that:
Parameters processing can be unstable depending of the parameters name that the user choose. Now, if we have two different parameters
algorithm
andalgorithmDefault
any of them can be randomly choose to be assigned toobj.method
. The issue comes from Experiment.m:elseif strncmpi('algorithm',nueva_linea, 3),
Causes to compare only using the first lines. A quick fix can be to use length(), so that:
elseif strncmpi('algorithm',nueva_linea, length('algorithm')),
The text was updated successfully, but these errors were encountered: