Effacer les filtres
Effacer les filtres

display a matrix that contains strings and numbers

3 vues (au cours des 30 derniers jours)
eliza
eliza le 28 Mar 2012
hi
take for example the following:
nameMatrix = {'abc';'ef'}
dataMatrix = [ 1 2 3; 4 5 6]
fullMatrix = {nameMatrix,dataMatrix}
if i want to display the full matrix st i get the following
abc 1 2 3
ef 4 5 6
how can i do that so that they are perfectly aligned. if i use celldisp dont get them aligned..
thanks

Réponse acceptée

Walter Roberson
Walter Roberson le 28 Mar 2012
fullMatrix = [char(nameMatrix), num2str(dataMatrix)];
  3 commentaires
Walter Roberson
Walter Roberson le 29 Mar 2012
char([nameMatrix; num2str(dataMatrix)])
However, if you want the names to align with the numbers, then the easiest way is to start using fprintf()
eliza
eliza le 29 Mar 2012
thanks!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Cell Arrays 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