b379d7be80f2a9dc4437442c3b4cb818665ac9c1,examples/compartmental/bipolar_with_inputs.py,,,#,8

Before Change


plot(mon_L.t/ms, mon_R[morpho.R[-1]].v/mV, "b")
ylabel("v (mV)")
subplot(212)
for i in [0, 5, 10, 15, 20, 25, 30, 35, 40, 45]:
    plot(mon_L.t/ms, mon_L.v[i,:]/mV)
xlabel("Time (ms)")
ylabel("v (mV)")
show()

After Change


plot(mon_L.t/ms, mon_R[morpho.R[-1]].v/mV, "b")
ylabel("v (mV)")
subplot(212)
for x in linspace(0*um,45*um,10):
    plot(mon_L.t/ms, mon_L[morpho.L[x]].v/mV)
xlabel("Time (ms)")
ylabel("v (mV)")
show()
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 6

Instances


Project Name: brian-team/brian2
Commit Name: b379d7be80f2a9dc4437442c3b4cb818665ac9c1
Time: 2014-10-30
Author: romain.brette@ens.fr
File Name: examples/compartmental/bipolar_with_inputs.py
Class Name:
Method Name:


Project Name: brian-team/brian2
Commit Name: b379d7be80f2a9dc4437442c3b4cb818665ac9c1
Time: 2014-10-30
Author: romain.brette@ens.fr
File Name: examples/compartmental/bipolar_cell.py
Class Name:
Method Name:


Project Name: deepchem/deepchem
Commit Name: 5273d873b9154ad706bfdfcf4fc8e2354fd425c0
Time: 2016-01-16
Author: bharath.ramsundar@gmail.com
File Name: deepchem/models/__init__.py
Class Name: Model
Method Name: predict