Filter löschen
Filter löschen

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

1 Ansicht (letzte 30 Tage)
How do I plot the periodic transmitted signal sin(t^2) with a period of 0:2pi?
Thanks J

Antworten (1)

Star Strider
Star Strider am 16 Feb. 2017
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 Kommentare
Jamie  Chambers
Jamie Chambers am 16 Feb. 2017
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 am 16 Feb. 2017
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

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by