如何在三个维度中创建以下内容? (我已经拥有的额外维度)
with(plots):
animate(sin(Pi*(t-x))*Heaviside(t-x)-sin(Pi*(t+x))*Heaviside(t+x),x=-6..0,t=-5.99..12,frames=200,numpoints=200,color=red);
谢谢
答案 0 :(得分:0)
您可以使用plots[animate]
命令。如下所示:
plots[animate](plot3d, [sin(Pi*(t-x))*Heaviside(t-x)-sin(Pi(t+x))*Heaviside(t+x), x = -6 .. 0, y = -6 .. 0], t = -5.99 .. 12, frames = 200, numpoints = 200, color = red, orientation = [75, 75, 0])