Can I change the specific cell in the uitable with a function I have created?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Darren Koh
am 13 Feb. 2018
Kommentiert: Darren Koh
am 19 Feb. 2018
Hi there i have a function that i created and I want to display text in a specific cell/results column according to the function. Am i able to do this in guide? How do I choose a specific cell in 'data' to edit and set(handles.uitable .... ) back to my table? Thank you!
0 Kommentare
Akzeptierte Antwort
Gayatri Menon
am 16 Feb. 2018
Hi,
The following code snippet might help. Here I am replacing the data of one of the cell in the uitable (tag:uitable1).
set(handles.uitable1,'Data',{'A1',52;'A2',40;'A3',25})
data=get(handles.uitable1,'Data')
data{2,1}='B2';
set(handles.uitable1,'Data',data)
Thanks
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Import and Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!