フィルターのクリア

How to draw Lissajous curve or Figure 8 from sine and cose function?

27 ビュー (過去 30 日間)
Muhammad khan
Muhammad khan 2020 年 6 月 15 日
編集済み: Ameer Hamza 2020 年 6 月 15 日
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 件のコメント
David Goodmanson
David Goodmanson 2020 年 6 月 15 日
Hi Muhammad,
see Lissajous Curve in Wikipedia
Rik
Rik 2020 年 6 月 15 日
This comment was flagged by Muhammad khan about 3 hours ago:
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.

サインインしてコメントする。

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 6 月 15 日
編集済み: Ameer Hamza 2020 年 6 月 15 日
Try this code
t = 0:0.01:2*pi;
a = 3;
b = 2;
delta = pi/2;
x = cos(a*t+delta);
y = sin(b*t);
plot(x, y)
a, b, and delta are same as used at this link: https://en.wikipedia.org/wiki/Lissajous_curve

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by