summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/log.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/log.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/log.asy14
1 files changed, 0 insertions, 14 deletions
diff --git a/Master/texmf/doc/asymptote/examples/log.asy b/Master/texmf/doc/asymptote/examples/log.asy
deleted file mode 100644
index 532b7b782b6..00000000000
--- a/Master/texmf/doc/asymptote/examples/log.asy
+++ /dev/null
@@ -1,14 +0,0 @@
-import graph;
-
-size(150,0);
-
-real f(real x) {return log(x);}
-pair F(real x) {return (x,f(x));}
-
-xaxis("$x$",0);
-yaxis("$y$");
-
-draw(graph(f,0.01,10,operator ..));
-
-labelx(1,SSE);
-label("$\log x$",F(7),SE);