fib=load('fibdiff1.idx.hist.cnts');
fibtbl=load('fibtbldiff1.idx.hist.cnts');

f = figure(1);
set(f, "visible", "off");
bar(fib,"facecolor", "r", "edgecolor", "r");
ylabel('index');
xlabel('count');
title('fib sorted uniq MD5 counts');

H=2; W=2; B=0.2;
set(f,'PaperSize',[H,W]);
set(f, 'PaperPosition', [0,0,H,W]);
ax = gca ();
%set (ax, "position", [0.05, 0.05, 0.91, 0.91]);	

print(f, 'fibuniqhist.pdf', '-dpdf');
bar(fibtbl,"facecolor", "r", "edgecolor", "r");
ylabel('index');
xlabel('count');
title('fibtbl sorted uniq MD5 counts')
set(f,'PaperSize',[H,W]);
set(f, 'PaperPosition', [0,0,H,W]);
ax = gca ();
%set (ax, "position", [0.05, 0.05, 0.91, 0.91]);	
print(f, 'fibtbluniqhist.pdf', '-dpdf');