コマンドの入力例を示します。
set parametric
set size square
a=1
b=1
set xrange [-1.5:1.5]
set yrange [-2.5:0.5]
fx(t)=(a+b*cos(t))*sin(t)
fy(t)=-1*(a+b*cos(t))*cos(t)
plot [0:2*pi] fx(t),fy(t)
リマソン曲線を回転させて描いています。ここで、a=1,b=3とすると下記のようになります。
a=1
b=3
set xrange [-2.5:2.5]
set yrange [-4.5:0.5]
replot