Ask Your Question

Revision history [back]

Try

graphics_array([plot(T) for T in Ts])

or

for T in Ts:
    T.plot()

Try

graphics_array([plot(T) for T in Ts])
Ts]).show(figsize=[3*len(Ts), 3], aspect_ratio=1)

or

for T in Ts:
    T.plot()
T.plot().show()

Try

graphics_array([plot(T) for T in Ts]).show(figsize=[3*len(Ts), 3], aspect_ratio=1)

or

cols = 10
rows = Integer(len(Ts)) // cols
graphics_array([plot(T) for T in Ts], ncols=cols).show(figsize=[3*cols, 3*rows], aspect_ratio=1)

or

for T in Ts:
    T.plot().show()