When I specify the rotation angle as Pi / 2 in the rotationmatrix function, then the parameter equation does rotate Pi / 2:
ParametricPlot[{x, x^2}, {x, -3, 3}]
ParametricPlot[Evaluate[RotationMatrix[-Pi/2].{x, x^2}], {x, -3, 3}]
Why do I specify the rotation angle of Pi / 2 in rotationmatrix function, but the flow field only rotates Pi / 4?
u[x_, y_, z_] := x
v[x_, y_, z_] := -y
StreamPlot[
Evaluate[RotationTransform[-Pi/2][{u[x, y, z], v[x, y, z]}]], {x, -3,
3}, {y, -3, 3}]
