1. 程式人生 > >[PyQt5]動態顯示matplotlib作圖(一)

[PyQt5]動態顯示matplotlib作圖(一)

完整例項

import sys

from PyQt5.QtWidgets import QApplication, QMainWindow, QMenu, QVBoxLayout, QSizePolicy, QMessageBox, QWidget, \
    QPushButton
from PyQt5.QtGui import QIcon

from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas
from matplotlib.figure import Figure
import
matplotlib.pyplot as plt from PyQt5.QtCore import QTimer import random import numpy as np from scipy import interpolate class App(QMainWindow): def __init__(self): super().__init__() self.left = 10 self.top = 10 self.title = '這裡可以修改標題' self.width = 640 self.height = 400
self.initUI() def initUI(self): self.setWindowTitle(self.title) self.setGeometry(self.left, self.top, self.width, self.height) m = PlotCanvas(self, width=5, height=4)#例項化一個畫布物件 m.move(0, 0) button = QPushButton('這是一個按鈕', self) button.setToolTip('This s an example button'
) button.move(500, 0) button.resize(140, 100) button.clicked.connect(m.plot) self.show() class PlotCanvas(FigureCanvas): def __init__(self, parent=None, width=5, height=4, dpi=100): fig = Figure(figsize=(width, height), dpi=dpi) self.axes = fig.add_subplot(111) FigureCanvas.__init__(self, fig) self.setParent(parent) FigureCanvas.setSizePolicy(self, QSizePolicy.Expanding, QSizePolicy.Expanding) FigureCanvas.updateGeometry(self) self.init_plot()#開啟App時可以初始化圖片 #self.plot() def plot(self): timer = QTimer(self) timer.timeout.connect(self.update_figure) timer.start(100) def init_plot(self): x = [1, 2, 3, 4, 5, 6, 7, 8, 9] y = [23, 21, 32, 13, 3, 132, 13, 3, 1] self.axes.plot(x, y) def update_figure(self): x = np.linspace(0, 10, 10) y = [random.randint(0, 10) for i in range(10)] xx = np.linspace(0, 10) f = interpolate.interp1d(x, y, 'quadratic') # 產生插值曲線的函式 yy = f(xx) self.axes.cla() self.axes.plot(x, y, 'o',xx,yy) self.draw() if __name__ == '__main__': app = QApplication(sys.argv) ex = App() sys.exit(app.exec_()) if __name__ == '__main__': app = QApplication(sys.argv) ex = App() sys.exit(app.exec_())

輸出結果:

這裡寫圖片描述