from
CoCoMac
by James Allen Download CoCoMac.org cortical connectivity data, model it as a network, and simulate epileptic sprea
fc_saveLog(string)
function [] = fc_saveLog(string)
% Writes a given string to GUI_log.txt
logFile = fopen('GUI_log.txt', 'a'); %'a' = open, or create, for writing and append to end of file
fprintf(logFile, '\n %s \n', string);
fclose(logFile);
return