How to use the function quiver in app designer?

13 ビュー (過去 30 日間)
Elise Bruas
Elise Bruas 2021 年 5 月 17 日
編集済み: Cris LaPierre 2021 年 5 月 17 日
Hello,
I don't know how to use quiver (2D) in app designer?
Imshow does not work and I want to display a figure with the quiver knowing that I have already created an empty figure in the designer view. Can someone help me?
Elise

採用された回答

Rik
Rik 2021 年 5 月 17 日
You can specify the Parent property:
%load example data from the doc
load('wind','x','y','u','v')
X = x(11:22,11:22,1);
Y = y(11:22,11:22,1);
U = u(11:22,11:22,1);
V = v(11:22,11:22,1);
ax=uiaxes(uifigure);% create uiaxes handle
quiver(X,Y,U,V,'Parent',ax)

その他の回答 (1 件)

Cris LaPierre
Cris LaPierre 2021 年 5 月 17 日
編集済み: Cris LaPierre 2021 年 5 月 17 日
The general adaptation to get it to work in app designer is to explicitly tell the function which axes to plot into. For some functions, like quiver, the target axis is one of the optional inputs.
For others, like imshow, you use use the 'Parent' name-value pair.
imshow('peppers.png','Parent',app.UIAxes);
In app designer, the default axis name is app.UIAxes.
Another helpful page is Display Graphics in App Designer.

カテゴリ

Help Center および File ExchangeVector Fields についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by