What's the problem?

4 次查看(过去 30 天)
I do not know what the code problem is for not plotting:
t=-50:1:50; y=(t.^2+9)/(t-3.^2); plot(t,y,'-k');

采纳的回答

Image Analyst
Image Analyst 2017-10-13
编辑:Image Analyst 2017-10-13
You forgot to use dot slash to do an element by element divide:
t = -50 : 1 : 50;
y = (t.^2 + 9) ./ (t-3^2);
plot(t, y, 'k-', 'LineWidth', 2);
grid on;
xlabel('X', 'FontSize', 20);
ylabel('Y', 'FontSize', 20);
The above code works fine.

更多回答(1 个)

Jonathan Chin
Jonathan Chin 2017-10-13
I assume you wanted to do an element divide see small below
t=-50:1:50;
y=(t.^2+9)./(t-3.^2);
plot(t,y,'-k');

类别

Help CenterFile Exchange 中查找有关 Dates and Time 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by