How to show Column and Row numbers in Matrix
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sahil Bajaj
el 29 de Nov. de 2015
Editada: Mohammad Abouali
el 29 de Nov. de 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 comentarios
Respuesta aceptada
Mohammad Abouali
el 29 de Nov. de 2015
Editada: Mohammad Abouali
el 29 de Nov. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!