Why won't this plot?

1 visualizzazione (ultimi 30 giorni)
Serena Simpson
Serena Simpson il 18 Set 2020
Commentato: Star Strider il 19 Set 2020
%% Section 1: Initalization of Variables
%increments of x
x = -4:1:-1;
%
%The function we are given
y = x + (1 ./ (x.^2-1));
%% Section 2: Processing
plot(x,y)
axis([-15 15 0 15])
%I want to be able to see the y function appraching the verticle asymptote '-1' from the left but my function wont graph
  2 Commenti
Asad (Mehrzad) Khoddam
Asad (Mehrzad) Khoddam il 18 Set 2020
First, use more points:
x = -4:.1:-1;
Then remove the axis limil:
% axis([-15 15 0 15])
Serena Simpson
Serena Simpson il 18 Set 2020
Thank you so much!

Accedi per commentare.

Risposta accettata

Star Strider
Star Strider il 18 Set 2020
The problem are the y-axis limits in the axis call.
Comment-out the axis call (as I do here) and you will immediately see the problem.
plot(x,y)
% axis([-15 15 0 15])
.
  4 Commenti
Serena Simpson
Serena Simpson il 19 Set 2020
It worked great! Thanks!
Star Strider
Star Strider il 19 Set 2020
As always, my pleasure!

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Line Plots in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by