Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
How do I plot the periodic transmitted signal sin(t^2) with a period of 0:2pi?
Thanks J

Respuestas (1)

Star Strider
Star Strider el 16 de Feb. de 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 comentarios
Jamie  Chambers
Jamie Chambers el 16 de Feb. de 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 el 16 de Feb. de 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

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by