How do you create a scatter plot using select columns from app.UITable.Data?
1 view (last 30 days)
Show older comments
I have a Table where the rows get added and updated. I would like to be able to create a scatter plot of the table. Any thoughts?
Answers (1)
Walter Roberson
on 23 Jun 2022
scatter(TableName{:,2}, TableName{:,4})
3 Comments
Walter Roberson
on 23 Jun 2022
Why are you storing text for your uitable entries? Why are you not storing numeric values?
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!