Graph window is blank
조회 수: 1 (최근 30일)
이전 댓글 표시
function V_Gauss_Pulse(t, to, t_w)
tp = (t-to)^2/t_w^2;
vg = exp(tp);
plot (vg,t)
댓글 수: 0
답변 (1개)
Rik
2021년 2월 24일
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
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!