Mathematica参数方程和列表图

时间:2012-11-27 22:20:09

标签: list plot wolfram-mathematica equation

x = e ^ 1/2 * Cos((pi / 4)t)+ Cos(2Pi * t) y = e ^ 1/3 * 1 / 2Sin(pi * t)+ sin(2pi * t)

t E [a,b]其中'a'和'b'通过输入输入。如何在t = a,a + 1,a + 2,...,b的时刻绘制't'的位置。

1 个答案:

答案 0 :(得分:2)

我不确定我明白你的意思How can I draw where t is'. But if you want to draw ParametricPlot in t`命令是

x = Exp[1/2]*Cos[(Pi/4) t] + Cos[2 Pi*t] ;
y = Exp[1/3]*1/2 Sin[Pi*t] + Sin[2 Pi*t];
a = -1; b = 1;
ParametricPlot[{x, y}, {t, a, b}]

enter image description here