graph_and_table
Aucune licence
Note de l’éditeur : This file was a File Exchange Pick of the Week
Creates a graph and a data table below it.
the table is put in an activex control using
the column labels colhead
This function is meant to be an example for CSSM and not
to be used as is.
It is meant to demonstrate ActiveX grid usage and works with
MSFLEXGRID (which comes with Windows and doesn't allow editing)
and SIMPLE GRID (which is available for free at
http://adfsoft.hypermart.net/sgrid/ ).
Use 'SGRID' for the whichgrid parameter to use
simple grid, but you must first you must download it from the above
website and register it. To register, find sgrid.ocx by clicking on
the windows start button and selecting "find". Change your directory
to its directory and type "regsvr32 sgrid.ocx"
___________________ ____________________
| /\ | | /\ | X Y ##
| /\ / \/\ /| | || || 1 1.0 ##
| / \/ \_/\/ | ||\ ||/\|| 2 1.5 ##
|_/_________________| || | | ||| 3 2.0 ##
| X Y || || |/ | 4 1.6 ##
| 1 1.0 || || | 5 2.0 ||
| 2 1.5 ## | | 6 2.5 ||
|__3__2.0__________|| |_________|__7__2.3_||
horizontal split vertical split
INPUTS DESCRIPTION DEFAULT VALUE
x x data [1:10]
y y data rand(size(x));
colhead table header {'X','Y'};
vertorhoriz vert or horiz split 0 %(vertical)
figuretitle figure title 'graph_and_table'
whichgrid MSFlexGrid or Simple Grid 'MSFlexGrid'
OUTPUTS:
h.fig handle to figure
h.graph handle to graph
h.line handle to data line
h.grid handle to grid object
USAGE:
x=1:10;
y=rand(size(x));
colhead={'X','Y'};
vertorhoriz=0; % vertical
figuretitle='graph_and_table';
h=graph_and_table(x,y,colhead,vertorhoriz,figuretitle);
vertorhoriz=1; % horizontal
h=graph_and_table(x,y,colhead,vertorhoriz,figuretitle);
h=graph_and_table(x,y,colhead,vertorhoriz,figuretitle,'SGRID');
IT'S NOT FANCY, BUT IT WORKS
Citation pour cette source
Michael Robbins (2026). graph_and_table (https://fr.mathworks.com/matlabcentral/fileexchange/3477-graph_and_table), MATLAB Central File Exchange. Extrait(e) le .
Compatibilité avec les versions de MATLAB
Plateformes compatibles
Windows macOS LinuxCatégories
Tags
Remerciements
A inspiré : Keydown and Keypressed Events Demo
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Découvrir Live Editor
Créez des scripts avec du code, des résultats et du texte formaté dans un même document exécutable.
| Version | Publié le | Notes de version | |
|---|---|---|---|
| 1.0.0.0 | Now can use MSFLEXGRID and SimpleGrid. SimpleGrid allows editing and works on some machines that cannot use MSFLEXGRID. |
