drawing graph
drawing graph
I want to draw overlapping voltage graphs but using two different conductances (active and passive). Something like using "keep lines" but for two different hoc files. How do I execute that? Thanks, Ron Amir
-
- Site Admin
- Posts: 6394
- Joined: Wed May 18, 2005 4:50 pm
- Location: Yale University School of Medicine
- Contact:
Re: drawing graph
Conceptualize the problem as a sequence of "Cases" where any given "Case" corresponds to a particular combination of model parameters. Then construct a model that has all mechanisms inserted, and use a custom myrun() procedure like this:
Code: Select all
proc myrun() {
. . . statements that set the model parameters for Case 1 . . .
run()
. . . statements that set the model parameters for Case 2 . . .
run()
etc.
}