Lissajous Figuren in Gnuplot
Da nicht jeder das nötige Kleingeld für ein Oszilloskop und Funktionsgenerator hat, aber jeder gerne eine Lissajous-Figur laufen haben möchte, liefere ich hier den entsprechenden Gnuplot Code.
reset
set term gif animate optimize
set output "lissajous.gif"
n=6250
set xr [-1:1]
set yr [-1:1]
set parametric
unset border
unset xtics
unset ytics
fx(t) = sin(t)
fy(t) = sin(2.999*t)
i=0
load "animateLissajou.gp"
set output
Die Datei „animateLissajou.gp
“ sieht dann so aus:
set trange [i:i+2*pi]
plot fx(t),fy(t) lc rgb 'black' notitle
i=i+2*pi*10
if (i < n) reread
Stark angelehnt an diesen Blogeintrag. Das Ergenis sieht dann so aus.