Plot Y-Range on Mathematica
By Emma Valentine •
I have a plot that I would like to slightly manipulate in Mathematica. Here is the code I am entering:
Plot[{x, 2^x, log_2(x)}, {x, -1, 3}]
As you can see $x$, $2^x$, and $log_2(x)$ are all plotted on a basic plot between $x = -1$ and $x = 3$. The x-range was easy to restrict, but how can I also restrict the y-range?
Thank you for your time.
$\endgroup$2 Answers
$\begingroup$Ahh... got it. Use PlotRange -> {lowerY, upperY}
$\endgroup$ 0 $\begingroup$Plot[{x, 2^x, Log2[x]}, {x, -1, 3}, PlotRange -> {-2, 4}]
Thanks, but actually you have to also include the x domain in the PlotRange function...so:
Plot[{x, 2^x, Log2[x]}, {x, -1, 3}, PlotRange -> {{-1,3},{-2, 4}}] $\endgroup$