![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1611326/image.png)
Plot 2D vector in AppDesigner
5 views (last 30 days)
Show older comments
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?
0 Comments
Answers (1)
Austin M. Weber
on 8 Feb 2024
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):
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1611326/image.png)
4 Comments
Austin M. Weber
on 10 Feb 2024
@Alberto Happy to help! If the solution is working for you then you should click the green button to accept the answer.
See Also
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!