Skip to content

Commit

Permalink
fixed bug with reporting LLE in summary method of comp_model
Browse files Browse the repository at this point in the history
  • Loading branch information
ljchang committed Feb 25, 2016
1 parent 6b24bb5 commit c265b55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file modified .DS_Store
Binary file not shown.
3 changes: 2 additions & 1 deletion Matlab/DecisionFunctions/comp_model.m
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

classdef comp_model < handle & design_matrix

% comp_model: data class for creating a computational model
Expand Down Expand Up @@ -486,7 +487,7 @@
'\nAverage Parameters:\t' num2str(nanmean(obj.params(:,2:length(obj.param_min) + 1))) ...
'\nAverage AIC:\t\t' num2str(nanmean(obj.params(:,end - 1))) ...
'\nAverage BIC:\t\t' num2str(nanmean(obj.params(:,end))) ...
'\nAverage ' obj.esttype ':\t\t' num2str(nanmean(obj.params(:,end-3))) ...
'\nAverage ' obj.esttype ':\t\t' num2str(nanmean(obj.params(:,end-2))) ...
'\nNumber of Subjects:\t' num2str(size(obj.params,1)) ...
'\n-----------------------------------------'])

Expand Down

0 comments on commit c265b55

Please sign in to comment.