No BSD License  

Highlights from
CoCoMac

image thumbnail
from CoCoMac by James Allen
Download CoCoMac.org cortical connectivity data, model it as a network, and simulate epileptic sprea

fc_clearGUI(fig_id, activ_plot_axes)
function [] = fc_clearGUI(fig_id, activ_plot_axes)

% This function is called after loading or downloading new network data
% -the list boxes of selected start nodes and nodes for removal are reset
% to blank, activ plot axes are reset and made invisible, and
% button_animate is made invisible

% Set the start node listbox and removal node listbox to blank
set(findobj(fig_id, 'style','listbox'), 'value', []);
set(findobj(fig_id, 'style','listbox'), 'string', '');

axes(activ_plot_axes);
cla;
set(findobj(fig_id, 'tag', 'button_animate'), 'visible', 'off');
set(findobj(fig_id, 'tag', 'panel_animate'), 'visible', 'off');
set(findobj(fig_id, 'tag', 'animation_frame_label'), 'visible', 'off');
set(findobj(fig_id, 'tag', 'animation_frame_editbox'), 'visible', 'off');
set(findobj(fig_id, 'tag', 'animation_slider'), 'visible', 'off');

return

Contact us at files@mathworks.com