Package javasim

Examples of javasim.Neuron


    System.out.println("coordinates should be: na:" + inputs[0] + " cat:"
        + inputs[1] + " cas:" + inputs[2] + " a:" + inputs[3] + " kca:"
        + inputs[4] + " kd:" + inputs[5] + " h:" + inputs[6] + " leak:"
        + inputs[7]);

    Neuron neuron = new Neuron(0.0, 0.0, 0.0005, 0, 0, inputs, null, null,
        null);
    neuron = javasim.Simulator.simulate(neuron);
    CompressedNeuron c = CompressNeuron.compressNeuron(neuron);
    f.setNeuron(neuron);
    f.setCompressedNeuron(c);
View Full Code Here

TOP

Related Classes of javasim.Neuron

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.