Info
この質問は閉じられています。 編集または回答するには再度開いてください。
How can I generate this tyope of matrix as shows in the follow
1 回表示 (過去 30 日間)
古いコメントを表示
I don't even know how to describe this matrix but it follows some rules. How can I generate a N*N matrix like follows. This is an example when N=8 and N=10. N is the only variable. Can anyone help me to generate matrix like follows when the value of N is given ? This is when=9 A =
0 1 1 0 1 1 0 1
1 0 1 1 0 1 1 0
1 1 0 1 1 0 1 1
0 1 1 0 1 1 0 1
1 0 1 1 0 1 1 0
1 1 0 1 1 0 1 1
0 1 1 0 1 1 0 1
1 0 1 1 0 1 1 0
When N=7
A =
0 1 1 0 1 1 1
1 0 1 1 0 1 1
1 1 0 1 1 0 0
0 1 1 0 1 1 1
1 0 1 1 0 1 1
1 1 0 1 1 0 1
1 1 1 0 1 1 0
2 件のコメント
Said BOUREZG
2015 年 3 月 14 日
編集済み: Said BOUREZG
2015 年 3 月 14 日
Hi Yishun Wang, I think in N=10 it follows some rules, but in N=7 no rule here.
回答 (2 件)
Said BOUREZG
2015 年 3 月 14 日
編集済み: Said BOUREZG
2015 年 3 月 14 日
This attached function can help you, b = spematrix(9)
b =
0 1 1 0 1 1 0 1 1
1 0 1 1 0 1 1 0 1
1 1 0 1 1 0 1 1 0
0 1 1 0 1 1 0 1 1
1 0 1 1 0 1 1 0 1
1 1 0 1 1 0 1 1 0
0 1 1 0 1 1 0 1 1
1 0 1 1 0 1 1 0 1
1 1 0 1 1 0 1 1 0
0 件のコメント
Roger Stafford
2015 年 3 月 14 日
Matlab's 'toeplitz' function can simplify this generation greatly.
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!