I have the following expression:
Show[
ParametricPlot[
Table[
{u[j]},
{j, Min[Im@z1, Im@z2], Max[Im@z1, Im@z2]}]
, {t, 0, 1}]
,
ParametricPlot[
Table[
v[j],
{j, Min[Re@z1, Re@z2], Max[Re@z1, Re@z2]}]
, {t, 0, 1}]
]
I am not showing the explicit meaning of u
and v
to de-clutter the idea of the question.
As you can see the limits for the iterator j
of the two Table
s make use of Min
and Max
in a very similar way, once with the Im
and once with the Re
of z1
and z2
.
My question is if I can make this expression look neater and more concise, together with the fact that the limits for ParametricPlot
is {t,0,1}
in both of them.
Any idea or suggestion would be very welcome.