How can I control the size of the window in the example below?

Poul Riis



import numpy as np
from guiqwt import pyplot as plt_

x = np.arange(0,20,0.1)
y = np.cos(x)
plt_.figure(1)
plt_.plot(x,y,'r-')
plt_.show()
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to