Calling data based on column name
18 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Kyle Koutonen
il 14 Mar 2021
Risposto: Seth Furman
il 18 Mar 2021
Say In matlab app designer in a table app.UITable1 and i want to calculate the mean of certain column based off the name I type into a edit feild (text) that matched with a column name of a table, who would i accomplish this?
0 Commenti
Risposta accettata
Seth Furman
il 18 Mar 2021
You could do something like
mean(t{:,varName})
where t is your UI table data (assuming it is represented as a table type) and varName is the variable name.
Take a look at this link for more on how to access table data.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!