Save table row into a vector in appdesigner

1 view (last 30 days)
mikel lasa
mikel lasa on 10 Jan 2022
Edited: Nihal on 26 Sep 2023
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.

Answers (1)

Nihal
Nihal on 26 Sep 2023
Edited: Nihal on 26 Sep 2023
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.

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!