How to align names with the numbers in a matrix?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Karanvir singh Sohal
le 5 Avr 2021
Modifié(e) : Adam Danz
le 6 Avr 2021
Hello!
I have to put heading row over the data matrix so I used the following code:
a=[12 13 14];
b={'a'; 'b'; 'c';};
c=[char(b)'; num2str(a)]
it gives me:
C= abc
12 13 14
But I want to align the first row over the second one.
required output:
C= a b c
12 13 14
2 commentaires
David Fletcher
le 5 Avr 2021
Can't you use a table - using the entries in b as the VariableNames and a as the row data
Karanvir singh Sohal
le 5 Avr 2021
Modifié(e) : Karanvir singh Sohal
le 5 Avr 2021
Réponse acceptée
Karanvir singh Sohal
le 6 Avr 2021
Plus de réponses (1)
Walter Roberson
le 5 Avr 2021
a=[12 13 14];
b={'a'; 'b'; 'c';};
fprintf('%5s %5s %5s\n', b{:}); fprintf('%5d %5d %5d\n', a);
Voir également
Catégories
En savoir plus sur Resizing and Reshaping Matrices 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!