Home > vbmeg > functions > gui > vb_input_settings > vb_input_settings_set_sequencially.m

vb_input_settings_set_sequencially

PURPOSE ^

SYNOPSIS ^

function data = vb_input_settings_set_sequencially(data)

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 data = vb_input_settings_set_sequencially(data)
0002 %
0003 % Copyright (C) 2011, ATR All Rights Reserved.
0004 % License : New BSD License(see VBMEG_LICENSE.txt)
0005 
0006 H = data.H;
0007 
0008 for k=1:length(data.def)
0009 
0010     % set listbox line
0011     set(H.name_listbox, 'Value', k);
0012     vb_input_settings_update_gui(data);
0013 
0014     % modify item
0015     item = data.def{k};
0016     item = vb_input_settings_set_item(item);
0017 
0018     % update value
0019     data.def{k} = item;
0020 end
0021

Generated on Mon 22-May-2023 06:53:56 by m2html © 2005