From: John H. <jdh...@ac...> - 2005-02-02 14:34:01
|
>>>>> "Cory" == Cory Davis <cd...@st...> writes: Cory> try title('$\mu='+str(p[ic-1])+'$') Cory. Make sure you quote the string as a raw string with the "r" prefix. I also suggest format strings for formatting numeric values, something like title(r'$\mu=%1.2f$' % p[ic-1]) ^ JDH |