How to get timer's UserData?
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (1)
Geoff Hayes
el 8 de Sept. de 2018
Jai - since the UserData is a struct, why not try
data = get(timer1, 'UserData');
steerData = data.steer;
1 comentario
JAI PRAKASH
el 8 de Sept. de 2018
Categorías
Más información sobre Develop Apps Using App Designer en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!