0

I need to plot this graph into a 2D grid, but I'm having a hard time finding a way to do this efficiently and in a way where I can change a few variables to make the appearance slightly different.

enter image description here

Does someone know of a function that could potentially create something like the above?

  • 1
    You will definitely not get this by plotting $y=f(x)$ for any function $f,$ because the graph fails the vertical line test. – David K Jan 11 '22 at 17:43

1 Answers1

2

You could try something like $$ \begin{equation} x(t) = t + \sin(2t) \\ y(t) = \cos(t) \end{equation} $$

Robbie
  • 801