Effacer les filtres
Effacer les filtres

Save table row into a vector in appdesigner

3 vues (au cours des 30 derniers jours)
mikel lasa
mikel lasa le 10 Jan 2022
Modifié(e) : Nihal le 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.

Réponses (1)

Nihal
Nihal le 26 Sep 2023
Modifié(e) : Nihal le 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.

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by