|
本帖最后由 hbghlyj 于 2024-8-28 17:06 编辑 用Mathematica画一个简单的参数曲线动图
- gif = Table[
- ParametricPlot[{Cos[5 t - 9 Degree a /7], Cos[7 t]}, {t, 0, 2 Pi},
- Axes -> False, PlotStyle -> Red], {a, 0, 40}];
- Export["sin.gif", gif, "DisplayDurations" -> 0.1, ImageSize->{80,80}];
- SystemOpen["sin.gif"]
复制代码 但是我想弄一个交互图,就像Mathematica里面的Manipulate那种...
一种办法是安装Geogebra Applet,另一种是使用CindyJS,经过搜索,又发现可以使用JSXGraph
math.unipd.it/~erb/Lissajous.html |
|