- Create your MATLAB app using the App Designer.
- Add a plot to your app's UI where the vehicle count vs. time data is displayed.
- Add a callback function to the plot's ButtonDownFcn property. This function will be triggered when the user clicks on the plot.
- In the callback function, capture the x-coordinate (time) of the clicked point using the CurrentPoint property of the plot.
- Retrieve the corresponding value from the plot data based on the clicked x-coordinate (time).
- Update the text edit field in your app with the retrieved value.
Numeric text edit field filled out automatically when I clicked in the plot's either X_axis or Y_Axis. Is that possible in matlab app designer?
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Dhaval
el 25 de Jul. de 2023
Comentada: Dhaval
el 31 de Jul. de 2023
For example: Here, we have plot vehicle count vs time. I want to use plot's some values in my app for further process. Like if I click on 15s on time_axis, it take value from plot and fill that value in text edit field of the app. So, I don't have to put value manually in edit field. Is that possible in matlab? if yes, could you share links, where I can get idea about it.
0 comentarios
Respuesta aceptada
Menika
el 25 de Jul. de 2023
Hi,
Yes, you can use MATLAB's interactive features to capture user input from a plot and update a text edit field in your app accordingly
Hope it helps!
Más respuestas (0)
Ver también
Categorías
Más información sobre Annotations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!