how to plot a continuous signal

158 visualizaciones (últimos 30 días)
Mohammadreza kalantari
Mohammadreza kalantari el 19 de Oct. de 2019
Respondida: Asif el 4 de Abr. de 2024 a las 4:49
I want to plot x(t) = cos(200*pi*t*u(t)) and define u(t) seprately and then plot x(-t),x(t/3)
i wrote this
x = @(t) cos(200*pi*t*u(t));
t = linspace(-1, 1);
figure(1)
plot(t, x(t))
grid
function y = u(x)
y=0;
if x>=0
y=1;
end
end

Respuesta aceptada

Star Strider
Star Strider el 19 de Oct. de 2019
This should get you started:
u = @(t) t>=0;
x = @(t,u) cos(200*pi*t.*u(t));
t = linspace(-1, 1);
figure(1)
plot(t, x(t,u))
grid
Extending that:
u = @(t) t>=0;
x = @(t,u) cos(200*pi*t.*u(t));
t = linspace(-1, 1);
figure(1)
plot(t, x(t,u))
hold on
plot(t, x(-t,u))
plot(t, x(t/3,u))
hold off
grid
Experiment to get different results.
  8 comentarios
Mohammadreza kalantari
Mohammadreza kalantari el 31 de Oct. de 2019
Editada: Mohammadreza kalantari el 31 de Oct. de 2019
I asked in that way too.
Star Strider
Star Strider el 31 de Oct. de 2019
I will delete this Comment in a few minutes, then.

Iniciar sesión para comentar.

Más respuestas (1)

Asif
Asif el 4 de Abr. de 2024 a las 4:49
t=0:0.01:5; %Time from 0 to 5 seconds with a step size of 0.01 seconds
%Define the continous signal ( for example, a sinusoidal signal)
% Frequency=2; %Frequency of the sinusoid in HZ
Amplitude=1; % Amplitude of the sinusoid
Phase = pi/4; %phase of the sinusoid ( in radians)
signal = Amplitude*sin(2*pi*Frequency*t+Phase);
% plot the continuous signal
plot(t, signal,'b','Linewidth',6);
xlabel('xTime(s)X');
ylabel('Ampltitude');
title('Continuous Sinusoidal signal');
grid on

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by