OctPlot - handle graphics for Octave

Stairs plots

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

Code OctPlot 0.3.6
Stairs-Plot
x = linspace(-2*pi^(1/2), /
2*pi^(1/2),40);
stairs(x,tanh(x).*sin(x));
set(gcf,'Color','w');
print -dpng -r72 'stairsName.png'
stairs plot of OctPlot
Comment

Code Matlab R14SP3
Stairs-Plot
x = linspace(-2*pi^(1/2), /
2*pi^(1/2),40);
stairs(x,tanh(x).*sin(x));
set(gcf,'Color','w');
print -dpng -r72 'stairsName.png'
stairs plot of Matlab R14
Comment