makeFigure

PURPOSE ^

makeFigure create a figure suitable for printing in a GPUBench report

SYNOPSIS ^

function fig = makeFigure( name )

DESCRIPTION ^

makeFigure  create a figure suitable for printing in a GPUBench report

   fig = gpubench.makeFigure(name)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function fig = makeFigure( name )
0002 %makeFigure  create a figure suitable for printing in a GPUBench report
0003 %
0004 %   fig = gpubench.makeFigure(name)
0005 
0006 %   Copyright 2011 The MathWorks, Inc.
0007 
0008 fig = figure( 'Name', name, ...
0009     'NumberTitle', 'off', ...
0010     'Color', 'w', ...
0011     'InvertHardCopy', 'off', ...
0012     'Renderer', 'ZBuffer', ...
0013     'Visible', 'off' );
0014 set( fig, 'DefaultAxesColor', 0.95*[1 1 1] );

Community support and wiki are available on Redmine. Last update: 18-Apr-2019.