float scale = (x - 1f) / (1f - intercept);
float bias = 1f - scale * intercept;
SynapticIntegrator integrator = new LinearSynapticIntegrator(ourMaxTimeStep, ourCurrentUnits);
SpikeGenerator generator = new ALIFSpikeGenerator(myTauRef, myTauRC, myTauN, myIncN.sample()[0]);
return new ExpandableSpikingNeuron(integrator, generator, scale, bias, name);
}