How to extract data from reverse quiver plot?

2 Ansichten (letzte 30 Tage)
Abbie
Abbie am 23 Nov. 2014
Kommentiert: Adam Danz am 16 Apr. 2020
Hi,
I have an original quiver plot. My interest is to extract the data (x-reverse, y-reverse, u-reverse, v-reverse) from the figure with reverse x-direction, as shown in Figure B.
quiver (x, y, u, v) %original quiver plot
set (gca,'XDir','reverse') %reverse in x-direction
By simply change the original x to –x and original u to –u will cause to the undesired change of x-coordinates (-30 to 30 in Figure B).
Can you please help me on how to achieve my objective?
Thanks so much for you help.
  1 Kommentar
Adam Danz
Adam Danz am 16 Apr. 2020
Instead of flipping the x axis direction, flip the sign of the x-component of the quiver vectors.
quiver (x, y, -u, v)

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Vector Fields finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by