Issue with Quiver plot

2 Ansichten (letzte 30 Tage)
Turbulence Analysis
Turbulence Analysis am 23 Okt. 2021
Kommentiert: Star Strider am 23 Okt. 2021
Hi,
I am creating the vector plot with Quiver () command. I would like to perform left to right flip. I have tried with Fliplr () option .. But didn't get the desired results.
Could someone help me on how to perform flip operation in the below command??. I have attached x2, y2, u , v arrays here..
c= (quiver(x2+1.5,y2(1:skip:end),u(1:skip:end,:),v(1:skip:end,:)))';
c.Color='r';
c.AutoScaleFactor=6;

Akzeptierte Antwort

Star Strider
Star Strider am 23 Okt. 2021
I have absolutely no idea what the desired result actually is.
One option: negate ‘x2’
Another option:
set(gca, 'XDir','reverse')
.
  3 Kommentare
Turbulence Analysis
Turbulence Analysis am 23 Okt. 2021
Thanks a lot.. Yes.. Now I am got the desired one...
Star Strider
Star Strider am 23 Okt. 2021
As always, my pleasure!
.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Turbulence Analysis
Turbulence Analysis am 23 Okt. 2021
Thanks, with set(gca, 'XDir','reverse') I got the desired results. But on the x axis I always need to display negative values on left and positive on the right. Is there a way out to do this ??

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