How can I plot scatterplot in the UIAxes of App Designer

22 visualizaciones (últimos 30 días)
Kelvin
Kelvin el 11 de Nov. de 2021
Editada: Kevin Holly el 11 de Nov. de 2021
I want to plot a scatterplot (from communications toolbox) onto a UIAxes created with App designer.
Scatterplot always opens a new figure, and scatterplot does not support the following syntax:
scatterplot(app.UIAxes, SignalofInterest)
Scatterplot does support
scatfig = scatterplot(__)
but I am not sure how I can place the scatfig handle into a UIAxes of app designer.

Respuesta aceptada

Kevin Holly
Kevin Holly el 11 de Nov. de 2021
Editada: Kevin Holly el 11 de Nov. de 2021
App Designer uses uifigure. I found a way to move the scatterplot from the scatterplot figure to the uifigure.
handle = uifigure;
scatfig = scatterplot(rand(10,1),1,0,'b.')
scatfig.Children(2).Parent = handle %Moves axes from scatterplot figure to uifigure window
You can change the scatterplot axes properies through
handle.Children

Más respuestas (0)

Categorías

Más información sobre Scatter Plots en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by