Quiver plot appears upside down.

17 次查看(过去 30 天)
Hello,
I'm trying to verify a PIV analysis method but first came across an issue with the quiver command. As seen from the first two attached images, the sense is such that there is no data on the upper left corner triangle. However, the quiver plot displays this data gap in the bottom left corner.
I'm using quiver(u,v), as I don't have x,y data. Does anyone have any suggestions please?
Thank you very much!

采纳的回答

Dave B
Dave B 2021-11-20
编辑:Dave B 2021-11-20
Images are normally shown in what's called ij coordinates, meaning (in the all positive number case) the top left corner is 0,0, but quiver defaults to xy co-ordinates meaning (in the all positive number case) the bottom left corner is 0,0
Fortunately, MATLAB makes it easy to switch, just do:
axis ij
after making your quiver. Alternatively, you could do:
set(gca,'YDir','reverse')
which is what axis ij does.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Vector Fields 的更多信息

标签

产品


版本

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by