|
From: Nils W. <nw...@me...> - 2005-02-02 12:48:16
|
Hi all,
I am going to change the title of each subplot with respect to the
actual value of \mu within a loop.
How can I do that ?
p = array(([0.1,0.01,0.001,0.0001]))
ic = 1
for mu in p:
title('$\mu=$'+str(p[ic-1])) # This version doesn't work
ic = ic + 1
Nils
|