From 222292b3aa9d967557c3165cce5cc7f5773c20ab Mon Sep 17 00:00:00 2001 From: bnewbold Date: Tue, 22 Apr 2014 22:00:10 -0400 Subject: commit old graph example script --- julia/graph_example.jl | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 julia/graph_example.jl diff --git a/julia/graph_example.jl b/julia/graph_example.jl new file mode 100644 index 0000000..e4d00d1 --- /dev/null +++ b/julia/graph_example.jl @@ -0,0 +1,28 @@ + +# Trivial Winston plotting example + +using Winston + +a=20 +b=2 +c=5 +dt = 0.05 +tlast = 2 +iterations = int( round(tlast/dt) ) +xall = zeros(iterations, 1) +x = c + +for i = 1:iterations + xall[i] = x + dxdt = a - b*x + x = x + dxdt*dt +end + +time = dt * [0:iterations-1]' + + +plot(time,xall) +title("Horray!") +xlabel("time") +ylabel("y") + -- cgit v1.2.3