help with magic matrix

6 ビュー (過去 30 日間)
asaf omer
asaf omer 2019 年 7 月 4 日
コメント済み: KALYAN ACHARJYA 2019 年 7 月 4 日
hola,
magic matrix is a matrix that the sum of every row and every column and the main secondery diagonal is simmilar.
i need to write a function that gets a number n and return a squre magic matrix in this size if there is one and otherwise returns the number 0.
  1 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 7 月 4 日
For me its takes little time, try it, concept is here

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

回答 (1 件)

Chirag Nighut
Chirag Nighut 2019 年 7 月 4 日
編集済み: Chirag Nighut 2019 年 7 月 4 日
It is proved that there exist magic squares for any n >=3 (cf. L.Bieberbach).
function ret = getMagicMatrix()
prompt = 'Enter n ';
n = input(prompt)
if n<3
ret = 0;
return;
end
ret = magic(n);
end

カテゴリ

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

タグ

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by