How do you create a scatter plot using select columns from app.UITable.Data?
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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?
2 Kommentare
Walter Roberson
am 23 Jun. 2022
Should the plotting be based upon variable (column) number, or should it be based upon column name? Are the column names or number to plot always the same or is there input indicating which ones to select?
Antworten (1)
Walter Roberson
am 23 Jun. 2022
scatter(TableName{:,2}, TableName{:,4})
3 Kommentare
Walter Roberson
am 23 Jun. 2022
Why are you storing text for your uitable entries? Why are you not storing numeric values?
Siehe auch
Kategorien
Mehr zu Scatter Plots 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!