computation of eigenvalues in Neuron

Anything that doesn't fit elsewhere.
Post Reply
sabsan

computation of eigenvalues in Neuron

Post by sabsan »

Hi everybody,
I am going to write a piece of code in Neuron in which I'll need to compute the zeros of a polynomial or the eigenvalues of a nonsymmetric matrix. I checked the User Guide but it seems that Neuron just computes the eigenvalues of symmetric matrices right now. Has anybody had similar problems in the past? Maybe a solution could be a library interfaced with Neuron but I've never done it. Do you have any idea? Thanks. Bye
ted
Site Admin
Posts: 6384
Joined: Wed May 18, 2005 4:50 pm
Location: Yale University School of Medicine
Contact:

Post by ted »

You could write your own proc in hoc, and performance would be acceptable as long as
you only have to do it a few times and the matrix isn't too big. An alternative is to write the
code in C (with some extra bits to access hoc variables from C) and embed it in the
VERBATIM block of a mod file.
Post Reply