仿真时间需要有三要素:总时长,时间步长,以及遍历时间。
总时长通常用”t_total”表示。
t_total = int时间步长通常用“dt”表示
dt = float遍历时间
t = np.arange(0, t_total, dt)前置条件需要引用Numpy包
import numpy as np·

仿真时间需要有三要素:总时长,时间步长,以及遍历时间。
总时长通常用”t_total”表示。
t_total = int时间步长通常用“dt”表示
dt = float遍历时间
t = np.arange(0, t_total, dt)前置条件需要引用Numpy包
import numpy as np
发表回复