This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Base | |
(sepline) | |
where | |
_sepline :: String -> String | |
_sepline x = let l = replicate 8 '-' in l ++ x ++ l | |
sepline :: String -> IO () | |
sepline = putStrLn . _sepline |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from PyQt5 import QtCore | |
from PyQt5.QtWidgets import * | |
from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas | |
# from matplotlib.figure import Figure | |