摘要: 运行python文件的时候报错: SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3:truncated \UXXXXXXXX escape 引起这个错误的原因就是转义的问题。 举 阅读全文
posted @ 2019-10-07 09:24 华小电 阅读(5641) 评论(1) 推荐(0) 编辑
摘要: 使用python中的ctypes模块可以很方便的调用windows的dll(也包括linux下的so等文件) 引入ctypes库 有两种方法 加载DLL stdcall调用约定:两种加载方式 cdecl调用约定:也有两种加载方式 引入ctypes库的方法不同,对应不同的加载DLL方式 第一种: 第二 阅读全文
posted @ 2019-10-07 09:16 华小电 阅读(5157) 评论(0) 推荐(0) 编辑
摘要: 保存到文本文件numpy.savetxt()numpy.loadtxt() 保存一个数组到二进制文件(npy文件) numpy.save() 保存多个数组到二进制文件(npz文件) numpy.savez() 阅读全文
posted @ 2019-10-06 10:13 华小电 阅读(2229) 评论(0) 推荐(0) 编辑
摘要: 读txt文件 python常用的读取文件函数有三种read()、readline()、readlines() read() #一次性读取文本中全部的内容,以字符串的形式返回结果 readline() #只读取文本第一行的内容,以字符串的形式返回结果 readlines() #读取文本所有内容,并且以 阅读全文
posted @ 2019-10-06 10:11 华小电 阅读(14294) 评论(0) 推荐(1) 编辑
摘要: 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 = (-... 阅读全文
posted @ 2019-06-28 15:03 华小电 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 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 华小电 阅读(435) 评论(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 华小电 阅读(649) 评论(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 华小电 阅读(1207) 评论(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 华小电 阅读(2910) 评论(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 华小电 阅读(2203) 评论(0) 推荐(0) 编辑