Skip to content
Snippets Groups Projects
Commit cd636136 authored by ac_fx's avatar ac_fx
Browse files

nist updated draw results

parent 24194ca1
No related branches found
No related tags found
No related merge requests found
function drawResults(kpred,K,mx,sd,outfolder,nTrial)
clf;
errorbar(mx,sd);
errorbar(mx,sd,'color','k','linewidth',1.5);
set(gca,'xtick',[1:12]);
set(gca,'FontWeight','bold');
set(gcf,'color','w');
xlabel('K Predicted')
ylabel('Optimality Deficiency')
drawnow;
titlestr=sprintf('mean and standard deviation of optimality deficiency kTrue=%d kPred=%d',K,kpred);
title(titlestr)
xlabel('K')
% titlestr=sprintf('mean and standard deviation of optimality deficiency kTrue=%d kPred=%d',K,kpred);
% title(titlestr)
% xlabel('K')
if exist('outfolder','var')
if kpred==K
......
outfolder='./results/';
outfolder='./results_181121/';
if ~exist(outfolder,'dir')
mkdir(outfolder);
mkdir(fullfile(outfolder,'true'));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment