PDA

View Full Version : Label Axes in mathematica


adnan jahan
Aug27-11, 07:59 AM
Dear Fellows
I am working on Mathematica and found my graph successfully but the problem only I am having is how to label my graph,

command of my plot is

Plot [Re[u], {x, 0, 1}, Frame -> True]
which shows the range of x axis but I also want to define range of my y axis ,,,

can any body help me in this regard..

thanks

DaleSpam
Aug27-11, 08:11 AM
Use the PlotRange option.

adnan jahan
Aug27-11, 08:17 AM
Plot [Re[u], {x, 0, 1}, Frame -> True,PlotRange -> {{0, 1.2}, {1, -5}}]
thanks DaleSpam