Skip to content

Commit

Permalink
added ; to silence output on screen
Browse files Browse the repository at this point in the history
  • Loading branch information
rtaormina committed Jun 24, 2015
1 parent febf554 commit 6a50d2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plotFrequencyMatrix.m
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@

% add secondary y axis
% check if metricToPrint was given, otherwise go for RMSE
temp = accuracies
temp = accuracies;

labels = arrayfun(@(x) sprintf('%3.3f',x),temp(sIxes),...
'UniformOutput',false);
xs = repmat(nFeat+0.625,1,nSubsets+1);
ys = [0,1:nSubsets];
text(xs,ys,cat(1,'accuracy',labels));
[~,ixBest] = max(accuracies(sIxes))
[~,ixBest] = max(accuracies(sIxes));
text(xs(ixBest),ys(ixBest+1),labels(ixBest),'Color','red');

axis square
Expand Down

0 comments on commit 6a50d2d

Please sign in to comment.