I want to plot:
y = x / (1+x^2)
Why does my output look like this? My code is within the screenshot as well.
Any help is greatly appreciated!

 Akzeptierte Antwort

Star Strider
Star Strider am 18 Nov. 2021
It looks like that because only part of the function is visible in that plot.
A ‘zoomed in’ part of the plot reveals it to be continuous with a minimum at (-1, -0.5) and a maximum at (+1, +0.5) so there is nothing at all wrong with it.
f = -500 : 0.1: 500;
Y = f ./ (1 + f.^2);
figure
plot(f, Y)
grid
xlim([-3 3]) % X-Axes 'Zoomed' Around Origin
Experiment to explore it further.
.

2 Kommentare

Sidant Dev
Sidant Dev am 18 Nov. 2021
This is what I suspected, thank you!
Star Strider
Star Strider am 18 Nov. 2021
As always, my pleasure!
.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by