summaryrefslogtreecommitdiff
path: root/graphics/asymptote/examples/log.asy
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /graphics/asymptote/examples/log.asy
Initial commit
Diffstat (limited to 'graphics/asymptote/examples/log.asy')
-rw-r--r--graphics/asymptote/examples/log.asy14
1 files changed, 14 insertions, 0 deletions
diff --git a/graphics/asymptote/examples/log.asy b/graphics/asymptote/examples/log.asy
new file mode 100644
index 0000000000..532b7b782b
--- /dev/null
+++ b/graphics/asymptote/examples/log.asy
@@ -0,0 +1,14 @@
+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);