Lines Matching refs:pylab
80 from matplotlib import pylab
87 pylab.suptitle('Rober')
88 pylab.subplot(2, 2, 1)
89 pylab.subplots_adjust(wspace=0.3)
90 pylab.semilogy(
94 pylab.xlabel('step number')
95 pylab.ylabel('timestep')
98 pylab.subplot(2, 2, i + 2)
99 pylab.semilogx(tt, xx[:, i], 'rgb'[i])
100 pylab.xlabel('t')
101 pylab.ylabel('x%d' % i)
103 pylab.show()