Skip to content

Commit

Permalink
fix bug in roc_solver.m that incorrectly output the dprime1_lure para…
Browse files Browse the repository at this point in the history
…meter of the MSD model. This parameter was set to the most conservative response bias parameter. This had not impact on the underlying model parameters, so if the MSD model was estimated without the dprim1_lure parameter varying, there is no impact on the resulting parameters.
  • Loading branch information
jdkoen committed Mar 7, 2018
1 parent a82c957 commit 2a3847e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/roc_solver.m
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@
data.(modelField)(index).parameters.Dprime1_targ = ...
bf_pars(:,2) + bf_pars(:,4);
data.(modelField)(index).parameters.Dprime1_lure = ...
bf_pars(:,7) + bf_pars(:,9);
bf_pars(:,7);
end

% Generate the predicted and fitted data
Expand Down

0 comments on commit 2a3847e

Please sign in to comment.