Effacer les filtres
Effacer les filtres

display data in text field MATLAB app designer

55 vues (au cours des 30 derniers jours)
MakM
MakM le 10 Avr 2022
Commenté : MakM le 10 Avr 2022
How can I display my data into the test field. My data is in the loop as shown in the code. I want to display all data in text field( any other field can be suggested).
function ButtonPushed(app, event)
for i = 1:10
disp(' ')
value1=['Sess (', int2str(i), '/' int2str(i+1) '):']
app.TextArea.Value=value1;
end
end
function TextAreaValueChanged(app, event)
value = app.TextArea.Value;
end

Réponse acceptée

Walter Roberson
Walter Roberson le 10 Avr 2022
What is the point of the disp() there?
Inside the loop, you are changing all of the value of the text area, overwriting what was previously there, and you do not have any kind of pause to allow the person to read the text.
If you want to display all of the data, have you considered building a string() array? Possibly even without a loop?
i = (1:10).';
s = "Sess (', " + i + "/" + (i+1) + ")";
app.TextArea.Value = s;
  7 commentaires
Walter Roberson
Walter Roberson le 10 Avr 2022
app.TextArea.Value = {''};
for i = 1 : 10
s = "Sess (" + i + "/" + (i+1) + ")";
app.TextArea.Value{i} = char(s);
pause(0.05);
end
MakM
MakM le 10 Avr 2022
Thanks Walter, It works :)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Graphics Object Programming dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by