[Pybrainsim-activity] SF.net SVN: pybrainsim:[124] trunk/src/PyBrainSim.py
Status: Planning
Brought to you by:
rgoj
From: <rg...@us...> - 2009-09-11 10:03:36
|
Revision: 124 http://pybrainsim.svn.sourceforge.net/pybrainsim/?rev=124&view=rev Author: rgoj Date: 2009-09-11 10:03:26 +0000 (Fri, 11 Sep 2009) Log Message: ----------- * Preparing the PyBrainSim script to host an example cortical area simulation with a neural mass model from Jansen and Rit 1995. Modified Paths: -------------- trunk/src/PyBrainSim.py Modified: trunk/src/PyBrainSim.py =================================================================== --- trunk/src/PyBrainSim.py 2009-09-02 08:51:22 UTC (rev 123) +++ trunk/src/PyBrainSim.py 2009-09-11 10:03:26 UTC (rev 124) @@ -48,9 +48,10 @@ 3. Incrementing numbers, two generators and a stimulus for one of them\n\ 4. A single sinusoidal generator\n\ 5. A hundred sinusoidal generators with random frequencies, some connected\ - to a stimulus.\n\ + to a stimulus\n\ 6. A single sinusoidal generator but with two registration sites\n\ - 7. A presentation of the 3d head model." + 7. A presentation of the 3d head model\n\ + 8. A model of a cortical area, based on Jansen and Rit 1995." print(welcomeMessage) userChoice = input("Your choice: ") @@ -174,5 +175,7 @@ elif userChoice == 7: exampleHead = Head() exampleHead.displayHead() +elif userChoice == 8: + print("Not implemented yet...") else: print("No such option unfortunately...") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |