Plot 2D vector in AppDesigner

4 次查看(过去 30 天)
Alberto
Alberto 2024-2-8
Hello there!
I'd like to use the command vplot in MATLAB AppDesigner, but it doesn't work.
Is it possible to use it? or is there any other option to plot a vector in 2D in AppDesigner?

回答(1 个)

Austin M. Weber
Austin M. Weber 2024-2-8
I could not get the vplot function to work, but there is always quiver.
For instance, if you add a button to your app and give it a callback function you can give it the following commands:
load wind
quiver(app.UIAxes,x(:,:,7),y(:,:,7),u(:,:,7),v(:,:,7));
ylim(app.UIAxes,[30 50])
xlim(app.UIAxes,[85 115])
This will produce a nice 2D vector plot in the app designer (assuming that you already have a UIAxes pane with the name UIAxes in the app):
  4 个评论
Alberto
Alberto 2024-2-8
Thanks a lot, sir! Really useful
Austin M. Weber
Austin M. Weber 2024-2-10
@Alberto Happy to help! If the solution is working for you then you should click the green button to accept the answer.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

产品


版本

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by