How to show my output in regular time sequence at app designer?

1 Ansicht (letzte 30 Tage)
jiwon ham
jiwon ham am 11 Dez. 2019
I have four edit field to display my output when I push button.
All edit field have value to display on, and I when to show them in regular sequence.
It mean, when I push button to show output, first editfield1 value will shown first, ane editfield2 value will second.... like that.
It's too hard find that function:(
I just want to know time function that can show value more lately just one second.....
Please help me!

Antworten (2)

Cameron B
Cameron B am 16 Dez. 2019
t = 0.5; %time in seconds
app.EditField1.Value = 4; %your value for the first edit field
pause(t)
app.EditField2.Value = 3; %your value for the second edit field
pause(t)
app.EditField3.Value = 2; %your value for the third edit field
pause(t)
app.EditField4.Value = 5; %your value for the fourth edit field
I'm not sure if this is what you're referring to, so please let me know if it isn't.

Sahithi Kanumarlapudi
Sahithi Kanumarlapudi am 17 Dez. 2019
The above mentioned solution might work in your case. Just make sure ‘pause’ setting is enabled. You can enable it using
pause('on')

Community Treasure Hunt

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

Start Hunting!

Translated by