diff options
Diffstat (limited to 'examples/graphs/function.jl')
-rw-r--r-- | examples/graphs/function.jl | 16 |
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") |