aboutsummaryrefslogtreecommitdiffstats
path: root/examples/graphs/function.jl
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-02-21 14:09:55 -0800
committerbnewbold <bnewbold@robocracy.org>2016-02-21 14:09:55 -0800
commit439655aaa40568acd0b4f536e67f6b90031ee147 (patch)
treec94bc6acc9a526812a862d34673c875e56541a6c /examples/graphs/function.jl
parent13db261935cd85bc91563999f451bc93081b34de (diff)
downloadPyX.jl-439655aaa40568acd0b4f536e67f6b90031ee147.tar.gz
PyX.jl-439655aaa40568acd0b4f536e67f6b90031ee147.zip
add examples (all ports from PyX 0.14.1)
Diffstat (limited to 'examples/graphs/function.jl')
-rw-r--r--examples/graphs/function.jl16
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/graphs/function.jl b/examples/graphs/function.jl
new file mode 100644
index 0000000..e995855
--- /dev/null
+++ b/examples/graphs/function.jl
@@ -0,0 +1,16 @@
+
+# Original Python:
+# from pyx import *
+#
+# g = graph.graphxy(width=8)
+# g.plot(graph.data.function("y(x)=sin(x)/x", min=-15, max=15))
+# g.writeEPSfile("function")
+# g.writePDFfile("function")
+# g.writeSVGfile("function")
+
+using PyX
+
+g = graph.graphxy(width=8)
+plot(g, graph_data_function("y(x)=sin(x)/x", min=-15, max=15))
+writeEPSfile(g, "function")
+writePDFfile(g, "function")