Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Adjust y axis plot range in Matlab?

Tags:

plot

matlab

I need to plot the following functions in matlab

y1=sign(x)
y2=tanh(x)
y3=(x)/(x+1)

The x-range is -5,5 with 0.1 spacing The y-plot range should be between -1.5 to 1.5.

Each plot should have a labeled x and y axis and a legend in the lower right corner.

The only things I cant figure out is how to adjust the y plot range. Ive tried editing the actual figure but all that seems to do is distort the graph. Is there a command within matlab that will let me adjust the y axis plot range?

The other thing I havent figured out yet is adding a legend, I can do it after the figure is created but I guess it needs to be done by matlab command.

like image 617
Christopher Avatar asked Feb 03 '14 14:02

Christopher


1 Answers

Yes, use axis after the plot command:

axis([-5 5 -1.5 1.5])
like image 88
am304 Avatar answered Nov 15 '22 05:11

am304