Graph window is blank

2 visualizaciones (últimos 30 días)
Sreenidhi Yeturi
Sreenidhi Yeturi el 24 de Feb. de 2021
Respondida: Rik el 24 de Feb. de 2021
function V_Gauss_Pulse(t, to, t_w)
tp = (t-to)^2/t_w^2;
vg = exp(tp);
plot (vg,t)

Respuestas (1)

Rik
Rik el 24 de Feb. de 2021
As most of the operation you perform don't work for most shapes of input data, I'm assuming you're calling this code with scalars.
What happens when you plot a line with a single point? You don't get a line. If you want to see a point, you need to change the default.
function V_Gauss_Pulse(t, to, t_w)
tp = (t-to).^2./t_w.^2;
vg = exp(tp);
plot(vg,t,'*')
end

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by