How do I create a (n x n) matrix whose elements alternate 1 or 0?
Afficher commentaires plus anciens
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.
Réponses (2)
Roger Stafford
le 4 Avr 2015
M = toeplitz(mod(1:n,2),mod(1:n,2));
1 commentaire
Jos (10584)
le 4 Avr 2015
M = mod(toeplitz(1:n),2)
Matt J
le 4 Avr 2015
[I,J]=ndgrid(1:n);
A=((-1).^(I+J)+1)/2
Catégories
En savoir plus sur Operators and Elementary Operations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!