creating a table from an array or matrix

4 vues (au cours des 30 derniers jours)
Tyler
Tyler le 27 Fév 2013
In the application i need, I want be able to display a table. It has 8 columns, 40 rows, and want to be able for it to display cleanly and have headings for each column.
as well if possible, after i would like to be able to display only the top 5 rows along with headings of this table.

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 27 Fév 2013
Modifié(e) : Azzi Abdelmalek le 27 Fév 2013
Use
uitable
Example
data=rand(5,2);
colnam ={'c1', 'c2'},
t=uitable('data',data,'columnname',colnam)
Fore more details
doc uitable

Plus de réponses (0)

Catégories

En savoir plus sur Operators and Elementary Operations dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by