Matlab won't plot my function

2 次查看(过去 30 天)
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
t=0:0.1:1;
y=(2*t+1) ./ (t.^2+1);
plot(t,y)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by