From e0c6872cf40896c7be36b11dcc744620f10adf1d Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Mon, 2 Sep 2019 13:46:59 +0900 Subject: Initial commit --- graphics/asymptote/examples/log.asy | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 graphics/asymptote/examples/log.asy (limited to 'graphics/asymptote/examples/log.asy') 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); -- cgit v1.2.3