Graphical Outputs HELP

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.

Réponses (1)

Chirag Gupta
Chirag Gupta le 4 Oct 2011

0 votes

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

Catégories

En savoir plus sur 2-D and 3-D Plots dans Centre d'aide et File Exchange

Tags

Question posée :

le 4 Oct 2011

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by