Effacer les filtres
Effacer les filtres

Adding text from calculation in app designer

4 vues (au cours des 30 derniers jours)
Alexandra Philip
Alexandra Philip le 29 Juil 2020
Modifié(e) : Cris LaPierre le 30 Juil 2020
I am having some with creating text on a figure and writing the text coming from a variable in app designer.
The app figure displays this:
The figure I want the text on is called app.UIFigure and I would like the text to display on the bottom left. It should be formatted as:
Vertical Bias:
Horizontal Bias:
Vertical Scale factor:
The variables that calculate these:
ATtableff=[VB,HB,VSF];
Should be displayed after the colon.
The display of all this text will be coded in my call back function for after the user clicks on calculate the text will display.
Any suggestions or modification I should apply?

Réponse acceptée

Cris LaPierre
Cris LaPierre le 29 Juil 2020
Modifié(e) : Cris LaPierre le 30 Juil 2020
You need to add the components to the Canvas first. You can then dynamically update the value in the code. I would use the "Edit Field (Numeric)" component (3 of them).
  • Change the labels to be what you want ("Vertical Bias:", "Horizontal Bias:", "Vertical Scale factor:")
  • Make them non-editable (Component Browser > Interactivity and unselect "Editable")
  • In your code, update the Value property of the Edit Fields with the calculated values.
app.VerticalBiasEditField.Value = VB;
  1 commentaire
Alexandra Philip
Alexandra Philip le 30 Juil 2020
Thank you. My code works smoothly now.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Develop uifigure-Based Apps dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by