You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
641 B
Python
28 lines
641 B
Python
import logging
|
|
import scipy as sp
|
|
import numpy as np
|
|
from numpy import pi, reshape
|
|
import matplotlib.pyplot as plt
|
|
import matplotlib
|
|
matplotlib.use('Qt4Agg')
|
|
from matplotlib import rcParams
|
|
rcParams.update({"font.size": 10})
|
|
|
|
|
|
try:
|
|
from win32api import LoadResource
|
|
except ImportError:
|
|
pass
|
|
|
|
log = logging.basicConfig(
|
|
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
|
|
level=logging.DEBUG)
|
|
|
|
|
|
def set_windows_title(title, log=None):
|
|
if log is not None:
|
|
log.info("Set windows title {}".format(title))
|
|
fig = plt.gcf()
|
|
fig.canvas.set_window_title(title)
|
|
plt.show()
|