Can I add unknown number of check boxes in live editor?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi,
I have a table and one of the vatiables in the table is categorical. I would like to add a check box per each category in live editor. However, I do not know how many categories are in the variable until I load it from a file. The file is being continuously updated by someone else, not changing columns but adding more rows which could have new categories. Is it possible to add check boxes programatically in live editor?
I am currently using R2021b. If there is no solution, can R2022a help? I read a new feature, "Live Editor: Develop your own Live Editor tasks", but am not sure if it is a (only) solution.
Thank you for your help in advance.
0 Commenti
Risposte (1)
Simon Chan
il 30 Mar 2022
Suppose your data is a cell array, update your uitable by the following:
uit.Data = [data,num2cell(false(size(data,1),1))]; % or you may use true instead of false
In case all your data are numeric and in a form of matrix, you can update the uitable via:
uit.Data=[num2cell(data),num2cell(false(size(data,1),1))]
2 Commenti
Simon Chan
il 30 Mar 2022
May be I misunderstand your question. I am referring to the checkbox inside the uitable. I think it is much more easy because the number of checkboxes depends on the number of rows from your data.
See this documentation: uitable
Vedere anche
Categorie
Scopri di più su Whos 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!