Problem 44419. 対称で、n*2n のサイズの行列を作成しましょう

サイズが n*2n の "mirror" 行列(対称行列)を作成しましょう。

例: n=2 の場合、以下のような出力を返します。

m = [ 1 2 2 1
       1 2 2 1 ]

n = 3 の場合、以下のようになります。

 m = [ 1 2 3 3 2 1
       1 2 3 3 2 1
       1 2 3 3 2 1 ]

Solution Stats

72.08% Correct | 27.92% Incorrect
Last Solution submitted on Apr 17, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers277

Community Treasure Hunt

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

Start Hunting!