摘要:
import sys from PyQt5.QtWidgets import * from PyQt5.QtGui import * class Example(QMainWindow): def __init__(self): super().__init__() self.initUI() de 阅读全文
摘要:
The QtCore module contains the core non-GUI functionality. This module is used for working with time, files and directories, various data types, strea 阅读全文
摘要:
import numpy as np from scipy.integrate import odeint import matplotlib.pyplot as plt # function that returns dz/dt def model(z,t,u): x = z[0] y = z[1] dxdt = (-x + u)/2.0 dydt = (-... 阅读全文