How to draw Lissajous curve or Figure 8 from sine and cose function?
Show older comments
i feel difficulty to draw the Lissajous curve correctly as it is shifted. can also be understand from the attached figure. can anyone please help me to resolve this issue?
t =0:pi/10:2*pi;
x = 11*-cos(t);
y = 11*sin(t);
%cancatenate
x = cat(2,x4,y4);
y= cat(2,y4,x4);

4 Comments
Cris LaPierre
on 15 Jun 2020
What have you tried so far? If you share the code used to create the plot shown, we can offer suggestions.
KSSV
on 15 Jun 2020
What is figure 8?
David Goodmanson
on 15 Jun 2020
Hi Muhammad,
see Lissajous Curve in Wikipedia
Rik
on 15 Jun 2020
Thanks for your reply, I have added a piece of code that i used to draw the figure 8. As X and Y contain data points in the code. i used these data points for further processing.
Accepted Answer
More Answers (0)
Categories
Find more on Creating, Deleting, and Querying Graphics Objects in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!