Save table row into a vector in appdesigner
显示 更早的评论
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.

回答(1 个)
Hornett
2024-9-6
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:
- 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
I hope this information resolves your query.
类别
在 帮助中心 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!