How do I create a (n x n) matrix whose elements alternate 1 or 0?
Ältere Kommentare anzeigen
How do I create a (n x n) matrix whose elements are either 1 or 0 such that the value of each element is different from its adjacent elements, both from those above and below it and from those on either side of it.
Antworten (2)
Roger Stafford
am 4 Apr. 2015
M = toeplitz(mod(1:n,2),mod(1:n,2));
1 Kommentar
Jos (10584)
am 4 Apr. 2015
M = mod(toeplitz(1:n),2)
Matt J
am 4 Apr. 2015
[I,J]=ndgrid(1:n);
A=((-1).^(I+J)+1)/2
Kategorien
Mehr zu State-Space Control Design and Estimation finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!