how can I plot this function?

how can i plot this function in matlab x(t)= J0(πt)[u(t) − u(t − 1)] and h(t) = 1.5 cos(πt)[u(t) − u(t − 1.5)]?

1 comentario

darova
darova el 6 de Abr. de 2020
Make an effort. It's your second time you want someone to do your homework

Iniciar sesión para comentar.

 Respuesta aceptada

shubhi dua
shubhi dua el 6 de Abr. de 2020

0 votos

t=0:0.001:20
% as you decrease the step size the graph becomes more and more acurate.%
x= J0(pi*t)(heaviside(t)-heaviside(t-1))
plot(t,x)
y=1.5*cos(pi*t).*(heaviside(t)-heaviside(t-1.5))
plot(t,y)

Más respuestas (0)

Etiquetas

Preguntada:

el 6 de Abr. de 2020

Comentada:

el 7 de Abr. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by