Home > functions > gui > batch > batch_list > vb_batch_list_help.m

vb_batch_list_help

PURPOSE ^

SYNOPSIS ^

function h = vb_batch_list_help

DESCRIPTION ^

 Copyright (C) 2011, ATR All Rights Reserved.
 License : New BSD License(see VBMEG_LICENSE.txt)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function h = vb_batch_list_help
0002 %
0003 % Copyright (C) 2011, ATR All Rights Reserved.
0004 % License : New BSD License(see VBMEG_LICENSE.txt)
0005 
0006 image = which('batch_help.png');
0007 
0008 img = imread(image);
0009 h = figure;
0010 set(h, 'Units', 'pixels');
0011 pos = get(h, 'Position');
0012 set(h, 'Position', [pos(1), pos(2), size(img,2), size(img,1)]);
0013 set(h, 'Units', 'normalized');
0014 pos = get(h, 'Position');
0015 set(h, 'Position', [0.2, 0.2, pos(3), pos(4)]);
0016 
0017 set(h, 'NumberTitle', 'off');
0018 set(h, 'Name', 'Batch builder help');
0019 
0020 set(h, 'Units', 'normalized', 'Menubar', 'none');
0021 ah = gca;
0022 imagesc(img);
0023 axis off;
0024 set(ah, 'Position', [0,0,1,1], 'Units', 'normalized');

Generated on Tue 27-Aug-2013 11:46:04 by m2html © 2005