Skip to content

Commit

Permalink
make parameterEstimateTable accessible in Model
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Vincent committed Jul 3, 2016
1 parent 198f585 commit b435826
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ddToolbox/model classes/Model.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
initialParams
%goodnessOfFit
postPred
parameterEstimateTable
end

methods(Abstract, Access = public)
Expand Down Expand Up @@ -131,6 +132,9 @@ function plotMCMCchains(obj,vars)
savePath = fullfile('figs',obj.saveFolder,fname);
exportTable(finalTable, savePath);

%% Store the table
obj.parameterEstimateTable = finalTable;

end


Expand Down

0 comments on commit b435826

Please sign in to comment.