how to put heading for columns of matrix?
12 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I want to put a heading for each column of a output matrix like
I J K
2 3 4
4 5 4
3 8 7
0 Commenti
Risposte (3)
Azzi Abdelmalek
il 4 Ott 2013
h={'I' 'J' 'K'}
A= [2 3 4;4 5 4;3 8 7]
M=[h;num2cell(A)]
5 Commenti
hadiqa khan
il 2 Apr 2018
the table window appears with the name figure how to name this table created by code provided by you??
Jonathan Sullivan
il 4 Ott 2013
If you have MATLAB 2013b, I would look into using tables
doc table
2 Commenti
Jonathan Sullivan
il 7 Ott 2013
No but earlier versions of MATLAB have datasets in the statistics toolbox. They provide similar functionality.
doc dataset
Vedere anche
Categorie
Scopri di più su LaTeX in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!