How to show Column and Row numbers in Matrix
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Sahil Bajaj
le 29 Nov 2015
Modifié(e) : Mohammad Abouali
le 29 Nov 2015
I have a matrix
1 2 3
4 5 6
7 8 9
I want
- 1 2 3
1 1 2 3
2 4 5 6
3 7 8 9
2 commentaires
Réponse acceptée
Mohammad Abouali
le 29 Nov 2015
Modifié(e) : Mohammad Abouali
le 29 Nov 2015
A=[1 2 3
40 5 6
7 800 9];
format = sprintf('%%%d',max(floor(log10(A(:)))+1));
fprintf([format 'c '],'-');
fprintf([format 'd '],1:size(A,2));
fprintf('\n');
for rowN=1:size(A,2)
fprintf([format 'd '],[rowN, A(rowN,:)])
fprintf('\n');
end
- 1 2 3
1 1 2 3
2 40 5 6
3 7 800 9
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical 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!