@@ -325,7 +325,7 @@ def Main(self, init_values=[-64.99584, 0.05296, 0.59590, 0.31773]):
325325 plt .title ('Simulation of Hodgkin Huxley model neuron' )
326326 plt .plot (self .t , gna , 'c' , label = '$g_{Na}$' )
327327 plt .plot (self .t , gk , 'y' , label = '$g_{K}$' )
328- plt .ylabel ('Cond. dens' )
328+ plt .ylabel ('Cond. dens ($mS/cm^2$) ' )
329329 plt .legend ()
330330 self .plot_count += 1
331331
@@ -338,7 +338,7 @@ def Main(self, init_values=[-64.99584, 0.05296, 0.59590, 0.31773]):
338338 plt .plot (self .t , ina , 'c' , label = '$I_{Na}$' )
339339 plt .plot (self .t , ik , 'y' , label = '$I_{K}$' )
340340 plt .plot (self .t , il , 'm' , label = '$I_{L}$' )
341- plt .ylabel ('Current' )
341+ plt .ylabel ('Current ($ \\ mu{A}/cm^2$) ' )
342342 plt .legend ()
343343 self .plot_count += 1
344344
@@ -349,7 +349,7 @@ def Main(self, init_values=[-64.99584, 0.05296, 0.59590, 0.31773]):
349349 ax1 = plt .subplot (self .num_plots ,1 ,self .plot_count + 1 )
350350 plt .title ('Simulation of Hodgkin Huxley model neuron' )
351351 plt .plot (self .t , V , 'k' )
352- plt .ylabel ('V (mV)' )
352+ plt .ylabel ('$V_{m}$ (mV)' )
353353 plt .xlabel ('t (ms)' )
354354 if not self .is_vclamp (): plt .ylim (- 85 ,60 )
355355 #plt.ylim(-1, 40)
0 commit comments