0001 function [tbl] = vb_define_description_table
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 tbl = [];
0016
0017
0018 key = 'brain_file';
0019 value = sprintf('Cortical model file (.brain.mat)');
0020 tbl = vb_table_insert(tbl, vb_key_value_pair(key, value));
0021
0022
0023 key = 'area_file';
0024 value = sprintf('Cortical area file (.area.mat)');
0025 tbl = vb_table_insert(tbl, vb_key_value_pair(key, value));
0026
0027
0028 key = 'act_file';
0029 value = sprintf('Cortical activity file (.act.mat)');
0030 tbl = vb_table_insert(tbl, vb_key_value_pair(key, value));
0031
0032
0033 key = 'current_file';
0034 value = sprintf('Cortical current file (.curr.mat)');
0035 tbl = vb_table_insert(tbl, vb_key_value_pair(key, value));
0036
0037
0038 key = 'tf_file';
0039 value = sprintf('Time frequency file (.tf.mat)');
0040 tbl = vb_table_insert(tbl, vb_key_value_pair(key, value));
0041
0042
0043 key = 'current_load_mode';
0044 value = sprintf(['average :averaged current data is loaded.\n', ...
0045 ' raw :specified single trial current data is loaded.']);
0046 tbl = vb_table_insert(tbl, vb_key_value_pair(key, value));
0047
0048
0049 key = 'jpcp_current';
0050 value = '';
0051 tbl = vb_table_insert(tbl, vb_key_value_pair(key, value));
0052
0053
0054 key = 'jpcp_timefreq';
0055 value = '';
0056 tbl = vb_table_insert(tbl, vb_key_value_pair(key, value));