How to skip a discontinuity in a fplot?

I am trying to use fplot in order to plot
g = @(y) tan(y)+exp(2*y)-3; from [0 2*pi]
I have been trying: fplot(g,[0 2*pi])
Since there is a discontinuity at pi/2 it makes the graph really disproportionate.
How can I make the plot without being very skewed by the discontinuity?

Réponses (1)

per isakson
per isakson le 17 Fév 2014
Modifié(e) : per isakson le 17 Fév 2014
Change the range of the y-axis
g = @(y) tan(y)+exp(2*y)-3; % from [0 2*pi]
fplot(g,[0 2*pi])
axh = gca;
set( axh, 'YLim', [ -100, 100 ] )
where

2 commentaires

Kyle
Kyle le 17 Fév 2014
What exactly is axh and gca?
per isakson
per isakson le 17 Fév 2014
I edited the answer

Connectez-vous pour commenter.

Catégories

En savoir plus sur Line Plots dans Centre d'aide et File Exchange

Question posée :

le 17 Fév 2014

Modifié(e) :

le 17 Fév 2014

Community Treasure Hunt

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

Start Hunting!

Translated by