Advertisement
Guest User

1

a guest
Nov 24th, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. a = Input[]
  2. b = Input[]
  3. f1[t_] = 3*Cos[Pi/2*t] - 2*Cos[3*Pi*t]
  4. f2[t_] = 3*Sin[Pi/2*t] - 2*Sin[3*Pi*t]
  5. tabela1 = Table[{f1[t], f2[t]}, {t, a, a + 3*b, b/2}]
  6. x = ParametricPlot[{f1[t], f2[t]}, {t, a, a + 3*b}]
  7. y = ListPlot[{tabela1}, PlotStyle -> PointSize[0.02]]
  8. Show[x, y]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement