【发布时间】:2021-11-22 22:00:34
【问题描述】:
enter image description here我想用 sympy 将每个图命名为 't = -4','t = 2',,,,'t = 4'。 我应该添加什么句子来做到这一点。函数 u(x,t) 已经定义好了。
from sympy import symbols
from sympy.plotting import plot as symplot
symplot(u(x,-4),u(x,-2),u(x,0),u(x,2),u(x,4))
【问题讨论】: