mathtext in title

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