So far I've got:
x = [-100 : 1 : 100];
y = (x - 2) / (2*x + 3);
plot(x,y, 'r')
grid on, axis equal
When I run it, it brings up the plot but the graph is missing.

 采纳的回答

You forgot the dot (.) operator to do element-wise division:
y = (x - 2) ./ (2*x + 3);
↑ ← DOT GOES HERE!

更多回答(2 个)

0 个投票

Oh yes, the dot. I was playing with it but left a space between the dot and the / operator. Thanks for the quick help.

1 个评论

My pleasure.
Leaving a space between the dot and the operator will throw an ‘Unexpected MATLAB operator.’ error.

请先登录,再进行评论。

Bhargav k
Bhargav k 2020-10-8

0 个投票

Plot the graph of y = x^2 − 2x − 3.

类别

帮助中心File Exchange 中查找有关 Line Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by