summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/filegraph.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/filegraph.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/filegraph.asy15
1 files changed, 15 insertions, 0 deletions
diff --git a/Master/texmf/doc/asymptote/examples/filegraph.asy b/Master/texmf/doc/asymptote/examples/filegraph.asy
new file mode 100644
index 00000000000..c56dd0234f3
--- /dev/null
+++ b/Master/texmf/doc/asymptote/examples/filegraph.asy
@@ -0,0 +1,15 @@
+import graph;
+
+size(200,150,IgnoreAspect);
+
+file in=line(input("filegraph.dat"));
+real[][] a=dimension(in,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);