| Author |
Comment/Response |
yehuda ben-shimol
|
09/22/09 08:37am
Hi
you do not need to artificially draw a line at y=0 to show the axis at y=0
you can control on the plotted range with PlotRange
Plot[\[Gamma][v], {v, -.99, .99},
PlotStyle -> {Thick, RGBColor[0.6, 0, 0]},
PlotRange -> {All, {0, 7}}]
and control the location of the origin of the axis with AxesOrigin, e.g.,
Plot[\[Gamma][v], {v, -.99, .99},
PlotStyle -> {Thick, RGBColor[0.6, 0, 0]}, AxesOrigin -> {0, 0},
PlotRange -> All]
yehuda
URL: , |
|