diff --git a/readme.html b/README.md similarity index 81% rename from readme.html rename to README.md index 7b6405a..41d10e9 100644 --- a/readme.html +++ b/README.md @@ -1,43 +1,52 @@ -
This is the readme for the code for the paper: -London M, Roth A, Beeren L, Hausser M, Latham PE (2010) Sensitivity to -perturbations in vivo implies high noise and suggests rate coding in -cortex. Nature 466:123-7 +London M, Roth A, Beeren L, Hausser M, Latham PE (2010) Sensitivity to +perturbations in vivo implies high noise and suggests rate coding in +cortex. *Nature* 466:123-7 -The network code was supplied by Peter Latham and updated by Tom Morse -for compiling in a modern linux (tested with g++ 4.4.3) by simply -typing "make". You can follow built-in help by running the executable +The network code was supplied by Peter Latham and updated by Tom Morse +for compiling in a modern linux (tested with g++ 4.4.3) by simply +typing "make". You can follow built-in help by running the executable ./theta1d without any arguments. To run you can create a sample input file by typing: +``` ./theta1d -s > sample_inputfile.txt +``` You can then edit sample_inputfile.txt as desired and then type +``` ./theta1d sample_inputfile.txt +``` -to run the model. The provided sample takes 10 seconds to run and +to run the model. The provided sample takes 10 seconds to run and should produce graphs such as under matlab/octave commands: -For population averaged rate for excitatory (blue) and inhibitory +For population averaged rate for excitatory (blue) and inhibitory cells (red): +```matlab load arate; figure plot(arate(:,1),arate(:,2)) hold on plot(arate(:,1),arate(:,3),'r') +``` -+--- + +2025-07-07: Converted README to Markdown. \ No newline at end of file+ For the last second of voltage activity of a selected neuron: +```matlab load v; figure plot(v(9000:10000,1),v(9000:10000,2)) +``` -
+ -