How to show Column and Row numbers in Matrix

1 回表示 (過去 30 日間)
Sahil Bajaj
Sahil Bajaj 2015 年 11 月 29 日
編集済み: Mohammad Abouali 2015 年 11 月 29 日
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 件のコメント
Jan
Jan 2015 年 11 月 29 日
編集済み: Jan 2015 年 11 月 29 日
Did you see, that the question looks funny without a proper formatting? I've marked the matrices and hit the "{} Code" button to make the question readable.
What should happen, when large values appear?
Sahil Bajaj
Sahil Bajaj 2015 年 11 月 29 日
If it is 4*4 matrix
- 1 2 3 4
1 1 0 0 0
2 0 1 0 0
3 0 0 1 0
4 0 0 0 1

サインインしてコメントする。

採用された回答

Mohammad Abouali
Mohammad Abouali 2015 年 11 月 29 日
編集済み: Mohammad Abouali 2015 年 11 月 29 日
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 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by