Issue with Quiver plot
2 ビュー (過去 30 日間)
古いコメントを表示
Turbulence Analysis
2021 年 10 月 23 日
コメント済み: Star Strider
2021 年 10 月 23 日
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;
0 件のコメント
採用された回答
Star Strider
2021 年 10 月 23 日
I have absolutely no idea what the desired result actually is.
One option: negate ‘x2’
Another option:
set(gca, 'XDir','reverse')
.
3 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Vector Fields についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!