Solving an equation from a NETRECEIVE block
Posted: Mon Sep 26, 2005 12:47 pm
Dear Forum,
I would like to solve an equation from a NET_RECEIVE block, basically like this:
The documentation suggests that this is not possible, unless I implement my own newton method. Is that true or can I use a solver included in NEURON to do the job?
Also I have found no examples of the use of the NONLINEAR keyword, is it still current?
I would like to solve an equation from a NET_RECEIVE block, basically like this:
Code: Select all
NONLINEAR find_x {
~ x = C_t*exp(x)-1
}
NET_RECEIVE(weight,x_tp, s_tp){
...
[i] solve equation find_x using newton[/i]
...
}
Also I have found no examples of the use of the NONLINEAR keyword, is it still current?