How can I set a figure window's title in pylab/python?
fig = figure(9) # 9 is now the title of the window
fig.set_title("Test") #doesn't work
fig.title = "Test" #doesn't work
|
How can I set a figure window's title in pylab/python?
| |||
|
feedback
|
|
It's the title function in the pylab module
Edit: Sorry about that, if you want to actually change the window you can do:
| |||||
feedback
|