How to analyze a graph?

Anything that doesn't fit elsewhere.
Post Reply
ergefan
Posts: 3
Joined: Sun Oct 17, 2010 11:04 am

How to analyze a graph?

Post by ergefan »

Hi,

I would like to be able to get information from simulation results such as action potential width & threshold, spiking frequency, firing latency, resting potential during firing and so on...how can I do that?

Thanks a lot.

Kai.
ted
Site Admin
Posts: 6393
Joined: Wed May 18, 2005 4:50 pm
Location: Yale University School of Medicine
Contact:

Re: How to analyze a graph?

Post by ted »

All things are possible through programming.

action potential width
1. Come up with an operational definition. This is the most important step.
2. Devise an algorithm that analyzes v and t values captured to a pair of Vectors using the Vector class's "record" method.
3. Implement the algorithm with a procedure in hoc (or Python if you like).
4. Decide whether you want to do this at the end of each simulation, or whether you want to run a bunch of simulations, write the Vectors to files, and process the files afterward. Then develop the necessary support/administrative code to accomplish the goal.

threshold
spiking frequency
firing latency
resting potential during firing
With each of these the first and most important task is to come up with an operational definition.
Post Reply