How to get timer's UserData?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
JAI PRAKASH
am 8 Sep. 2018
Kommentiert: JAI PRAKASH
am 8 Sep. 2018
I am fetching timer's UserData with the below command
data = get(timer1, 'UserData');
Problem is, it gives whole userdata. Suppose if only partial data is required.

for e.g. just steer data is required.
Is there something like this
data = get(timer1, 'UserData.data'); ??
Thank you
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Geoff Hayes
am 8 Sep. 2018
Jai - since the UserData is a struct, why not try
data = get(timer1, 'UserData');
steerData = data.steer;
Siehe auch
Kategorien
Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!