| Author |
Comment/Response |
yehuda
|
06/30/12 3:20pm
you can use a little trick. This is not the optimal solution, but for the rare situations where you need this (such as your post) you could try that
Just replace the functions to be drawn (I used sine) and the specific ranges
With[{tt =
Ticks /.
AbsoluteOptions[
Plot[0 &, {t, -2 \[Pi], 2 \[Pi]},
PlotRange -> {Full, {0, 1}}]]},
Plot[Sin[t], {t, -2 \[Pi], 2 \[Pi]}, Ticks -> tt,
Epilog -> {Thick, White, Line[{{0, 0}, {0, -1.1}}]}]]
yehuda
URL: , |
|