I want to reverse the direction of y-axis of my plot. What should I incorporate in my code? I am attaching part of my code where the plotting action is occurring.
streamData =
Table[{datax[[i, n - j + 1]], datay[[i, n - j + 1]]}, {i, 1, m}, {j, 1, n}];
ListVectorPlot[streamData,
StreamPoints -> 250,
Axes -> True,
Frame -> False,
VectorPoints -> All,
VectorColorFunction -> "Rainbow"]
datax- please add that so anyone interested can reproduce your example. Take a look at https://mathematica.stackexchange.com/q/41025/131, which may already help you. – Yves Klett Jan 09 '20 at 11:05