diff options
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/exp.asy')
-rw-r--r-- | Master/texmf-dist/doc/asymptote/examples/exp.asy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/exp.asy b/Master/texmf-dist/doc/asymptote/examples/exp.asy index 2c4eed90d4e..3558a2759bd 100644 --- a/Master/texmf-dist/doc/asymptote/examples/exp.asy +++ b/Master/texmf-dist/doc/asymptote/examples/exp.asy @@ -4,11 +4,11 @@ size(150,0); real f(real x) {return exp(x);} pair F(real x) {return (x,f(x));} +draw(graph(f,-4,2,operator ..),red); + xaxis("$x$"); yaxis("$y$",0); -draw(graph(f,-4,2,operator ..),red); - labely(1,E); label("$e^x$",F(1),SE); |