Hi there, I'm trying to plot this function in matlab, but the plot shows up blank. The workspace says y=1.524 which confuses me. Any ideas?
t=0:0.1:1;
y=(2*t+1)/(t.^2+1);
plot(t,y)

 채택된 답변

Walter Roberson
Walter Roberson 2015년 12월 6일
편집: Walter Roberson 2015년 12월 6일

0 개 추천

t=0:0.1:1;
y=(2*t+1) ./ (t.^2+1);
plot(t,y)

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

질문:

2015년 12월 6일

댓글:

2015년 12월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by