imagescの上にquiverを重ねるには

imagescで作成したカラーマップとquieverで作成した矢印を重ねて描画したいのですが、どのようにすればよいのでしょうか。
作りたい図のイメージを添付します。よろしくお願いいたします。

 Akzeptierte Antwort

Atsushi Ueno
Atsushi Ueno am 1 Jul. 2021

1 Stimme

hold onを実行すると既存のプロットが削除されなくなります。体裁を出来るだけ近付けましたが値は適当です。
mn = -10; mx = 10;
[X,Y] = meshgrid(mn:mx,mn:mx);
imagesc([mn mx],[mn mx],-0.93 - X.*Y.*0.0007);
hold on; % <-ここです
quiver(X,Y,X,Y);
colormap jet;
colorbar;
title('Quiver Plot');

1 Kommentar

持田
持田 am 1 Jul. 2021
ありがとうございます!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Tags

Gefragt:

am 1 Jul. 2021

Kommentiert:

am 1 Jul. 2021

Community Treasure Hunt

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

Start Hunting!