How to show my output in regular time sequence at app designer?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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!
0 Kommentare
Antworten (2)
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.
0 Kommentare
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')
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!