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?

Answers (1)

per isakson
per isakson on 17 Feb 2014
Edited: per isakson on 17 Feb 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 Comments

What exactly is axh and gca?
I edited the answer

Sign in to comment.

Categories

Find more on Mathematics in Help Center and File Exchange

Asked:

on 17 Feb 2014

Edited:

on 17 Feb 2014

Community Treasure Hunt

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

Start Hunting!