Effacer les filtres
Effacer les filtres

Upper limit on the number of UIAxes children allowed

5 vues (au cours des 30 derniers jours)
Kurt
Kurt le 1 Nov 2023
Commenté : Voss le 1 Nov 2023
I am plotting orbital data, using plot3 to progressively lengthen the orbital track of a spacecraft.
plot3(earthMoon.UIAxes, x,y,z,"w');
Each time I do this, another "Children' is added to the UIAxes instance. Eventually, when the number of children approaches 200 or so, the graphical object management becomes unwieldy and my GUI stops responding to button pushes; even the Matlab STOP and CONTINUE buttons fail to respond.
I found a similar question and answer here:
Is there a better way to manage the Children? I have tried thinning out my track data to reducte the number of points, but that results in jerky updates that don't align with the orbital state. I have also looked at using splines, but I will still need to limit the number of current track points to something under 200.
I have another app for displaying radar data where I progressively delete the oldest children in the UIApp, so I never have more than about 50. That works well, but for orbital data I would like to display the whole trajectory from launch to current time. It appears I can't have it both ways.

Réponse acceptée

Voss
Voss le 1 Nov 2023
Consider updating the XData, YData, and ZData of an existing line, rather than creating a new line each time you want to add more data to the plot.
For that, you can use a line object (such as what plot3 creates), or you may find it convenient to use an animatedline object.
  2 commentaires
Kurt
Kurt le 1 Nov 2023
The animatedline approach worked. Thanks!
Voss
Voss le 1 Nov 2023
You're welcome!

Connectez-vous pour commenter.

Plus de réponses (1)

dpb
dpb le 1 Nov 2023
Don't call plot3 (or friends) multiple times for such, update the data properties of the one having been called or use the animatedline instead.

Catégories

En savoir plus sur Animation dans Help Center et File Exchange

Produits


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by