- Callbacks in app designer: https://www.mathworks.com/help/matlab/creating_guis/write-callbacks-for-gui-in-app-designer.html
- Properties in app designer: https://www.mathworks.com/help/matlab/creating_guis/share-data-across-callbacks-in-app-designer.html
Save table row into a vector in appdesigner
4 views (last 30 days)
Show older comments
Hello,
I have 4 rows in a table which I want to save each row in an vector everytime I change a value in any cell. How can I do that?
So far, I have this but no idea on how to follow.
0 Comments
Answers (1)
Hornett
on 6 Sep 2024
I understand that you want to push data from your table rows to a vector whenever the value changes in table.
I want to inform you that the APP Designer in MATLAB provides callbacks that allow you to call functions based on user actions within the app.
You can refer to the sample code below. It demonstrates how to append data to a vector whenever table values are updated in App Designer.
% Creates a variable that can be used anywhere in app
properties (Access = public)
datavec=[] % Array to store data
end
% Cell edit callback: UITable
function UITableSelectionChanged(app, event)
app.datavec = [app.UITable.Data, app.datavec];
display(app.datavec)
end
Additionally, you can refer to the following documentation for further guidance:
I hope this information resolves your query.
0 Comments
See Also
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!