How can I plot the function y = e^(-2x^2) * cos(4pi*x - 1.5)?

2 visualizaciones (últimos 30 días)
emma
emma el 11 de Feb. de 2021
Comentada: emma el 11 de Feb. de 2021
How do I plot the function of y = e^(-2x^2) * cos(4pi*x - 1.5)? This is what I have so far but I can't seem to figure out what to do for the x coordinate. Is my y correct? Please help!
x=?
y=exp(-2.*x.^2) .* cos(4.*pi.*x - 1.5)
plot(x,y)

Respuesta aceptada

James Tursa
James Tursa el 11 de Feb. de 2021
Pick a range for x. E.g.,
x = 0:0.01:2;
y = exp(-2.*x.^2) .* cos(4.*pi.*x - 1.5);
plot(x,y)
  1 comentario
emma
emma el 11 de Feb. de 2021
Thank you! I was entering an incorrect range. This solved my issue.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by