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_download_data(list_startNodes)
function [data net netLabels] = fc_download_data(list_startNodes)

% This is an 'intermediate' function which calls the much bigger 
% function download() to download xml files from www.cocomac.org. Returns:
% 'data' (the main data structure), 
% 'net' (a numerical connectivity matrix made by makeNet)
% and 'netLabels' (a cell array of labels which index 'net')

data = download();  %Call download.m (main download function) and return the results

% Make the connectivity matrix
[net netLabels] = makeNet(data);

return;

Contact us at files@mathworks.com