摘要: import numpy as np from scipy.integrate import odeint import matplotlib.pyplot as plt # function that returns dz/dt def model(z,t): dxdt = 3.0 * np.exp(-t) dydt = -z[1] + 3 dzdt = [dxdt... 阅读全文
posted @ 2019-06-28 15:02 华小电 阅读(447) 评论(0) 推荐(0)
摘要: import numpy as np from scipy.integrate import odeint import matplotlib.pyplot as plt # function that returns dy/dt def model(y,t): # u steps from 0 to 2 at t=10 if t<10.0: u = 0 ... 阅读全文
posted @ 2019-06-28 14:59 华小电 阅读(661) 评论(0) 推荐(0)
摘要: An example of using ODEINT is with the following differential equation with parameter k=0.3, the initial condition y0=5 and the following differential 阅读全文
posted @ 2019-06-28 14:53 华小电 阅读(1243) 评论(0) 推荐(0)
摘要: Transfer function: \[\frac{1}{Ts+1} \]写成微分方程: \[Ty'(t)+y(t)=u(t) \]向前差分: \[y'(t) = \frac{y(t+1)-y(t)}{\Delta T} \\ y(t+1)=y(t)+\frac{\Delta T}{T}(u(t) 阅读全文
posted @ 2019-06-12 22:01 华小电 阅读(3067) 评论(0) 推荐(0)
摘要: Let's first fully upgrade our current Debian Stretch system: Update Package Repository to Debian Buster Your /etc/apt/sources.list should look similar 阅读全文
posted @ 2019-05-21 17:33 华小电 阅读(2220) 评论(0) 推荐(0)
摘要: class parent(object): def implicit(self): print("Parent implicit()") def override(self): print("Parent override()") def altered(self): print("Parent a 阅读全文
posted @ 2019-05-14 16:28 华小电 阅读(3540) 评论(0) 推荐(0)
摘要: 输出结果: 运行结果: 阅读全文
posted @ 2019-05-14 15:50 华小电 阅读(364) 评论(0) 推荐(0)
摘要: class Song(): def __init__(self,lyrics): self.lyrics=lyrics def sing_a_song(self): for line in self.lyrics: print(line) happy=Song(["Happy birthday to you", "Happy... 阅读全文
posted @ 2019-05-14 14:58 华小电 阅读(987) 评论(0) 推荐(0)
摘要: x1=x0+px2−1=x1+x0x2=x21 p=1.2 还可以做一些修改 1 from gekko import GEKKO 2 m=GEKKO() 3 p=m.Param(1.2) 4 x=m.Array(m.Var,3) 5 eq0 = x[1]==x[0]+p 6 eq1 = x[2]-1 阅读全文
posted @ 2019-04-18 09:38 华小电 阅读(428) 评论(0) 推荐(0)
摘要: import numpy as np import matplotlib.pyplot as plt from scipy.fftpack import fft fs=100 #采样频率 N=128 #数据点数 n=np.arange(0,N) t=n/fs #时间序列 pi=3.14 x=0.5*np.sin(2*pi*15*t)+2*np.sin(2*pi*40*t) y=... 阅读全文
posted @ 2019-04-17 17:05 华小电 阅读(2086) 评论(0) 推荐(0)