This function shows handed uri data by browser. [Usage] vb_browser_show(url); [Input] url : url [Output] none Copyright (C) 2011, ATR All Rights Reserved. License : New BSD License(see VBMEG_LICENSE.txt)
0001 function vb_browser_show(url) 0002 % This function shows handed uri data by browser. 0003 % [Usage] 0004 % vb_browser_show(url); 0005 % 0006 % [Input] 0007 % url : url 0008 % 0009 % [Output] 0010 % none 0011 % 0012 % Copyright (C) 2011, ATR All Rights Reserved. 0013 % License : New BSD License(see VBMEG_LICENSE.txt) 0014 0015 % 0016 % --- Previous check 0017 % 0018 if nargin ~= 1 0019 error('Please specify url'); 0020 end 0021 0022 % 0023 % --- Main Procedure 0024 % 0025 pause(0.1); % to stable browser loading... 0026 [r1, r2, r3] = web(url);