We posted simultaneously!
Thank you for answering, your help is precious.
=)
Search found 12 matches
- Thu Nov 15, 2007 8:16 am
- Forum: Parallel NEURON
- Topic: Another Kind of parallelisation
- Replies: 3
- Views: 4961
- Thu Nov 15, 2007 8:12 am
- Forum: Parallel NEURON
- Topic: Another Kind of parallelisation
- Replies: 3
- Views: 4961
Well, it relies on the main script structure... Organize your functions and variables such that the total number of task is: #tasks = #repetitions . #values to be tested i use this simple code: /////////////////////////////////////////////////////////////////// n // Number of tasks N // Number of re...
- Wed Nov 14, 2007 9:09 am
- Forum: Parallel NEURON
- Topic: Another Kind of parallelisation
- Replies: 3
- Views: 4961
Another Kind of parallelisation
Hi everyone, A frequency parameter for my stimulation is increased at each turn of a loop, 50 frequencies are tested at each run. I've parallelised the process such that n trials can be performed simultaneously, for a statistical analysis. (i use the ParallelNetManager) Is there any easy way to para...
- Fri Oct 26, 2007 3:58 am
- Forum: Other questions
- Topic: Loglog
- Replies: 4
- Views: 5088
- Thu Oct 25, 2007 5:33 am
- Forum: Other questions
- Topic: Loglog
- Replies: 4
- Views: 5088
Loglog
Hello everyone,
Does anyone know how to plot a vector with a logarithmic scale, similarly as would do the matlab loglog function?
I haven't found any clue in the documentation neither in the forum.
Any ideas are welcome =)
Does anyone know how to plot a vector with a logarithmic scale, similarly as would do the matlab loglog function?
I haven't found any clue in the documentation neither in the forum.
Any ideas are welcome =)
- Tue Oct 23, 2007 5:41 am
- Forum: Other questions
- Topic: Vector size and declaration
- Replies: 2
- Views: 3460
- Mon Oct 22, 2007 5:20 am
- Forum: Other questions
- Topic: Vector size and declaration
- Replies: 2
- Views: 3460
Vector size and declaration
Hi everyone, i've a reproduced in a simple script a problem that occured in a complex one. Basicaly, i declare 2 vectors of the size Number_Of_Loops. Then there is a for_loop, I fill in the vectors at every turn of the loop. This is working generally well but, for some parameters it freaks out! The ...
- Thu Oct 18, 2007 12:53 pm
- Forum: Optimization
- Topic: Fit praxis
- Replies: 1
- Views: 10797
OK! The way to make it works is to correctly implement the error function: This code works with the both fitting procedures ++ v ////////////////////////////////////// objref gg, dat, indep, vac, fitsine, carrier, carrier2 gg = new Graph() dat = new Vector(5) //Contains the Data to fit dat.x[0] = 0....
- Thu Oct 18, 2007 9:12 am
- Forum: Optimization
- Topic: Fit praxis
- Replies: 1
- Views: 10797
Fit praxis
Hi everyone, I'm trying to get use with the fitting procedures available with NEURON. I've troubles with the fit_praxis function that i didn't managed to solve despite the documentation and the other topic posted by jennap. Here is a simple code doing the fitting of 5 points with a sinusoidal functi...
- Fri Oct 12, 2007 9:55 am
- Forum: Other questions
- Topic: Simulation duration
- Replies: 3
- Views: 3419
- Fri Oct 12, 2007 5:53 am
- Forum: Other questions
- Topic: Simulation duration
- Replies: 3
- Views: 3419
Displaying the membran cell potential
It seems this is the source of the problem. The recording duration is really fast without displaying.
The previous recording has been performed within 2 minutes!
The previous recording has been performed within 2 minutes!
- Fri Oct 12, 2007 4:53 am
- Forum: Other questions
- Topic: Simulation duration
- Replies: 3
- Views: 3419
Simulation duration
Hi everyone, i have observed a quiet annoying process while recording spikes times of a single cell: the time dilates during the simualtion. I explain: the first 10 seconds lasts 12s seconds 20 to 30 lasts 20s seconds 40 to 50 lasts 40s The times spike are put into a vector which is processed into a...