OctPlot - handle graphics for Octave

Barh plots

The size of the graphics are the standard sizes which are defined from the programs

Code OctPlot 0.3.0
Barh-Plot
x = -2.9:0.2:2.9;
barh(x,exp(-x.*x))
set(gcf,'Color','w')
set(gca,'XLim',[-2.5 2.5])
print -dpng -r72 'barName.png'
bar plot of OctPlot
Comment no comment

Code Matlab R14SP3
Barh-Plot
x = -2.9:0.2:2.9;
barh(x,exp(-x.*x))
set(gcf,'Color','w')
set(gca,'XLim',[-2.5 2.5])
print -dpng -r72 'barName.png'
bar plot of Matlab R14
Comment no comment