Matrix with some sort of pattern

2 visualizzazioni (ultimi 30 giorni)
Andreas
Andreas il 24 Apr 2013
Spostato: Matt J il 17 Nov 2022
Hi everybody, i would like to make a matrices like this [1,1,1,1,1,0,0,0,0,0;0,0,0,0,0,1,1,1,1,1;] or this [-1 0 0;-1 0 0;-1 0 0;-1 -1 0;-1 -1 0; -1 -1 0;-1 -1 -1;-1 -1 -1;-1 -1 -1] in such a way that 'for' loop would be unnecessary.i was thinking something about repmat or so,because of the pattern that this kind of matrices seem to have.any ideas??? Thank you!!

Risposta accettata

Matt J
Matt J il 24 Apr 2013
You could use KRON
>> kron(eye(2), ones(1,5))
>> kron(tril(ones(3)),-ones(3,1))
  2 Commenti
Andreas
Andreas il 24 Apr 2013
Spostato: Matt J il 17 Nov 2022
Matt J. YOU are amazing. Thanx.
Mishaal Amir
Mishaal Amir il 17 Nov 2022
How to do this for an 9 by 9 matrix, with the number 9s surrounding the borders and the 0s in the center of the matrix?

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Resizing and Reshaping Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by