summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/filegraph.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/filegraph.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/filegraph.asy15
1 files changed, 15 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/filegraph.asy b/Master/texmf-dist/doc/asymptote/examples/filegraph.asy
new file mode 100644
index 00000000000..4b05c5bcbd7
--- /dev/null
+++ b/Master/texmf-dist/doc/asymptote/examples/filegraph.asy
@@ -0,0 +1,15 @@
+import graph;
+
+size(200,150,IgnoreAspect);
+
+file in=input("filegraph.dat").line();
+real[][] a=in.dimension(0,0);
+a=transpose(a);
+
+real[] x=a[0];
+real[] y=a[1];
+
+draw(graph(x,y),red);
+
+xaxis("$x$",BottomTop,LeftTicks);
+yaxis("$y$",LeftRight,RightTicks);