summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/exp.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/exp.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/exp.asy14
1 files changed, 0 insertions, 14 deletions
diff --git a/Master/texmf/doc/asymptote/examples/exp.asy b/Master/texmf/doc/asymptote/examples/exp.asy
deleted file mode 100644
index 2c4eed90d4e..00000000000
--- a/Master/texmf/doc/asymptote/examples/exp.asy
+++ /dev/null
@@ -1,14 +0,0 @@
-import graph;
-size(150,0);
-
-real f(real x) {return exp(x);}
-pair F(real x) {return (x,f(x));}
-
-xaxis("$x$");
-yaxis("$y$",0);
-
-draw(graph(f,-4,2,operator ..),red);
-
-labely(1,E);
-label("$e^x$",F(1),SE);
-