Graphical Outputs HELP
2 ビュー (過去 30 日間)
古いコメントを表示
I want to output a graph in tabular form, meaning instead of seeing a xy plot with a line. I want to see the actual data with numbers in X and Y format.
Is there any way this is possible?
Thanks Michael G.
0 件のコメント
回答 (1 件)
Chirag Gupta
2011 年 10 月 4 日
Try doc uitable:
simple example:
a = magic(10);
t = uitable('Data',[a(:,1) a(:,2)],'ColumnName',{'X','Y'},'RowName',{});
% You can set a whole lot of other properties to suit your needs
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!