Code covered by the BSD License
function fig = makeFigure( name ) %makeFigure create a figure suitable for printing in a GPUBench report % % fig = gpubench.makeFigure(name) % Copyright 2011 The MathWorks, Inc. fig = figure( 'Name', name, ... 'NumberTitle', 'off', ... 'Color', 'w', ... 'InvertHardCopy', 'off', ... 'Renderer', 'ZBuffer', ... 'Visible', 'off' ); set( fig, 'DefaultAxesColor', 0.95*[1 1 1] );
Contact us