J(x,y) = (y,x)
JPlot = plot_vector_field( J(x,y), (x,-3,3), (y,-3,3), figsize=[FS,FS])
a=1; b=-0.4; Q0 = parametric_plot( (a*exp(t)+b*exp(-t),a*exp(t)-b*exp(-t)), (t,-2,1), color="red", figsize=[FS,FS])
a=-1; b=-0.4; Q1 = parametric_plot( (a*exp(t)+b*exp(-t),a*exp(t)-b*exp(-t)), (t,-2,1), color="red", figsize=[FS,FS])
a=0.3; b=-0.4; Q2 = parametric_plot( (a*exp(t)+b*exp(-t),a*exp(t)-b*exp(-t)), (t,-2,2), color="red", figsize=[FS,FS])
a=0; b=-0.4; Q3 = parametric_plot( (a*exp(t)+b*exp(-t),a*exp(t)-b*exp(-t)), (t,-2,2), color="red", figsize=[FS,FS])
a=-0.3; b=-0.4; Q4 = parametric_plot( (a*exp(t)+b*exp(-t),a*exp(t)-b*exp(-t)), (t,-2,2), color="red", figsize=[FS,FS])
a=-1; b=0.4; Q5 = parametric_plot( (a*exp(t)+b*exp(-t),a*exp(t)-b*exp(-t)), (t,-2,1), color="red", figsize=[FS,FS])
a=1; b=0.4; Q6 = parametric_plot( (a*exp(t)+b*exp(-t),a*exp(t)-b*exp(-t)), (t,-2,1), color="red", figsize=[FS,FS])
a=0.3; b=0.4; Q7 = parametric_plot( (a*exp(t)+b*exp(-t),a*exp(t)-b*exp(-t)), (t,-2,2), color="red", figsize=[FS,FS])
a=0; b=0.4; Q8 = parametric_plot( (a*exp(t)+b*exp(-t),a*exp(t)-b*exp(-t)), (t,-2,2), color="red", figsize=[FS,FS])
a=-0.3; b=0.4; Q9 = parametric_plot( (a*exp(t)+b*exp(-t),a*exp(t)-b*exp(-t)), (t,-2,2), color="red", figsize=[FS,FS])
JPlot+Q0+Q1+Q2+Q3+Q4+Q5+Q6+Q7+Q8+Q9