フィルターのクリア

How do I plot the periodic transmitted signal sin(t^2) with a period of 0:2pi?

1 回表示 (過去 30 日間)
Jamie  Chambers
Jamie Chambers 2017 年 2 月 16 日
コメント済み: Star Strider 2017 年 2 月 16 日
How do I plot the periodic transmitted signal sin(t^2) with a period of 0:2pi?
Thanks J

回答 (1 件)

Star Strider
Star Strider 2017 年 2 月 16 日
It’s not clear to me what you want.
See if this works for you:
t = linspace(0, 2*pi, 250);
s = sin(t.^2);
figure(1)
plot(t, s)
grid
  2 件のコメント
Jamie  Chambers
Jamie Chambers 2017 年 2 月 16 日
Ok thanks, that works but this is what I should have asked t = linspace(0, 2*pi, 250); s = (t.^2);
figure(1) plot(t, s) grid
So I've removed sin. it plots the correct signals but I need to repeat so it makes peaks,
Star Strider
Star Strider 2017 年 2 月 16 日
That is straightforward to do:
t = linspace(0, 10*pi, 500); % Time Vector For 5 Cycles (5 * 2*pi)
tm = rem(t,2*pi); % Calculate ‘t mod(2*pi)’
s = @(t) t.^2; % Create Anonymous Function For Convenience
figure(1)
plot(t, s(tm)) % Plot
grid

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

カテゴリ

Help Center および File ExchangePulse and Transition Metrics についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by