How do you create a scatter plot using select columns from app.UITable.Data?
13 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
Walter Roberson
2022 年 6 月 23 日
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?
回答 (1 件)
Walter Roberson
2022 年 6 月 23 日
scatter(TableName{:,2}, TableName{:,4})
3 件のコメント
Walter Roberson
2022 年 6 月 23 日
Why are you storing text for your uitable entries? Why are you not storing numeric values?
参考
カテゴリ
Help Center および File Exchange で Scatter Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!