diff options
author | Dennis Kobert <dennis@kobert.dev> | 2019-11-30 18:30:56 +0100 |
---|---|---|
committer | Dennis Kobert <dennis@kobert.dev> | 2019-11-30 18:30:56 +0100 |
commit | e1172e94602f4cf003392409d9543d17c31881dc (patch) | |
tree | 5975b9d1c7e21ad0d496412da625bdc24c95bb79 /gnuplot | |
parent | 19d0a0d8550fd6deaa8f00e0f5c1c06342a94822 (diff) | |
parent | fc949f6605f114d27cafc835b1bc7fa3027050b3 (diff) |
Merge branch 'master' of keybase://team/entropyy.quantensysteme/dequantify
Diffstat (limited to 'gnuplot')
-rw-r--r-- | gnuplot/animation.plt | 11 | ||||
-rw-r--r-- | gnuplot/plotxy.plt | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/gnuplot/animation.plt b/gnuplot/animation.plt new file mode 100644 index 0000000..6228a53 --- /dev/null +++ b/gnuplot/animation.plt @@ -0,0 +1,11 @@ +set view equal xyz +set parametric +set isosamples 34,34 + +do for [ii=start:end] { + splot cos(u)*cos(v),cos(u)*sin(v),sin(u) w l lc rgb "#42a4f5", \ + 'data' every ::1::ii * states w points palette pointsize 2 pointtype 7#, \ + pause 0.1 +} + +pause mouse close diff --git a/gnuplot/plotxy.plt b/gnuplot/plotxy.plt new file mode 100644 index 0000000..b3bf993 --- /dev/null +++ b/gnuplot/plotxy.plt @@ -0,0 +1,11 @@ +set size square +#plot cos(x),sin(y) w l lc rgb "#42a4f5" +set xrange [-1.1:1.1] +set yrange [-1.1:1.1] +set xlabel "Re(V)" +set ylabel "Im(V)" +set xzeroaxis +set yzeroaxis +plot 'data' w points palette pointsize 2 pointtype 7 +; +pause mouse close |