summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/loggraph.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/loggraph.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/loggraph.asy18
1 files changed, 0 insertions, 18 deletions
diff --git a/Master/texmf/doc/asymptote/examples/loggraph.asy b/Master/texmf/doc/asymptote/examples/loggraph.asy
deleted file mode 100644
index edd9d3e0a67..00000000000
--- a/Master/texmf/doc/asymptote/examples/loggraph.asy
+++ /dev/null
@@ -1,18 +0,0 @@
-import graph;
-
-size(200,200,IgnoreAspect);
-
-real f(real t) {return 1/t;}
-
-scale(Log,Log);
-
-draw(graph(f,0.1,10));
-
-//xlimits(1,10,Crop);
-//ylimits(0.1,1,Crop);
-
-dot(Label("(3,5)",align=S),Scale((3,5)));
-
-xaxis("$x$",BottomTop,LeftTicks);
-yaxis("$y$",LeftRight,RightTicks);
-