How to overwrite average values to same class (or label)?
1 view (last 30 days)
Show older comments
Hi, I'm a beginner.
I want put the average values to the same class as shown in the picture.
Can I ask which commend would be helpful to me?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1184943/image.jpeg)
0 Comments
Accepted Answer
Marcel
on 8 Nov 2022
Edited: Marcel
on 8 Nov 2022
Not sure what you are exactly trying to do, but you can programmatically insert data into e.g. a UITable using this
% Left side
% First class: app.UITable.Data(1,1)
% Second class: app.UITable.Data(1,2)
% Mass: app.UITable.Data(1,3)
% (if i dont make a mistake. if so just swap the numbers)
app.UITable.Data(1,1) = cellstr("Im a awesome value");
More Answers (0)
See Also
Categories
Find more on Data Import from MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!